From ecb132c10c8e65fb24dca0a5fe397df4d4d5d388 Mon Sep 17 00:00:00 2001 From: dborth Date: Tue, 24 Nov 2009 04:05:22 +0000 Subject: [PATCH] --- source/ngc/oggplayer.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/ngc/oggplayer.c b/source/ngc/oggplayer.c index 1f7aa8d..abe9bc4 100644 --- a/source/ngc/oggplayer.c +++ b/source/ngc/oggplayer.c @@ -28,6 +28,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#ifndef NO_SOUND + #include #include #include @@ -536,3 +538,5 @@ void SetTimeOgg(s32 time_pos) if (time_pos >= 0) private_ogg.seek_time = time_pos; } + +#endif