Mercurial > SDL_sound_CoreAudio
changeset 443:30f96c853462
MacOS X build fixes.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Fri, 31 Jan 2003 05:17:46 +0000 |
parents | 6800c239cc93 |
children | 188eef49ad0d |
files | decoders/flac.c decoders/ogg.c |
diffstat | 2 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/decoders/flac.c Fri Jan 31 02:11:03 2003 +0000 +++ b/decoders/flac.c Fri Jan 31 05:17:46 2003 +0000 @@ -44,7 +44,7 @@ #define __SDL_SOUND_INTERNAL__ #include "SDL_sound_internal.h" -#include "FLAC/seekable_stream_decoder.h" +#include <FLAC/seekable_stream_decoder.h> #define D_END_OF_STREAM FLAC__SEEKABLE_STREAM_DECODER_END_OF_STREAM
--- a/decoders/ogg.c Fri Jan 31 02:11:03 2003 +0000 +++ b/decoders/ogg.c Fri Jan 31 05:17:46 2003 +0000 @@ -48,8 +48,8 @@ #define __SDL_SOUND_INTERNAL__ #include "SDL_sound_internal.h" -#include "vorbis/codec.h" -#include "vorbis/vorbisfile.h" +#include <vorbis/codec.h> +#include <vorbis/vorbisfile.h> static int OGG_init(void);