Mercurial > SDL_sound_CoreAudio
changeset 490:c7ab783f05d3
Patched to compile.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Wed, 14 Sep 2005 16:01:27 +0000 |
parents | c00e26a7e0b6 |
children | 8e9720b66e55 |
files | CHANGELOG Makefile.am extra_rwops.c extra_rwops.h |
diffstat | 4 files changed, 3 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/CHANGELOG Sun Jul 03 21:44:34 2005 +0000 +++ b/CHANGELOG Wed Sep 14 16:01:27 2005 +0000 @@ -2,6 +2,7 @@ * CHANGELOG. */ +09142005 - Happy September. Patched smpeg.c and some other things to compile. 01062005 - Fixed Project Builder project files (Thanks, Martin!) 11122004 - Fixed automake nonsense. Fixed logic bug in voc decoder. 07032004 - Removed altcvt from the source tree. Started pounding out initial
--- a/Makefile.am Sun Jul 03 21:44:34 2005 +0000 +++ b/Makefile.am Wed Sep 14 16:01:27 2005 +0000 @@ -9,8 +9,6 @@ libSDL_sound_la_SOURCES = \ SDL_sound.c \ SDL_sound_internal.h \ - alt_audio_convert.c \ - alt_audio_convert.h \ audio_convert.c \ extra_rwops.c \ extra_rwops.h
--- a/extra_rwops.c Sun Jul 03 21:44:34 2005 +0000 +++ b/extra_rwops.c Wed Sep 14 16:01:27 2005 +0000 @@ -148,7 +148,7 @@ return(0); for (i = 0; i < preallocate; i++) - free_pooled_rwops(alloc_pooled_rwops()); + RWops_pooled_free(RWops_pooled_alloc()); return(1); } /* RWops_pooled_init */
--- a/extra_rwops.h Sun Jul 03 21:44:34 2005 +0000 +++ b/extra_rwops.h Wed Sep 14 16:01:27 2005 +0000 @@ -77,7 +77,7 @@ SDL_RWops *RWops_pooled_alloc(void); /* Return a RWops to the pool for reuse. */ -void RWops_pooled_free(SDL_RWops *rw) +void RWops_pooled_free(SDL_RWops *rw); #ifdef __cplusplus }