From 799e9b0b053f019aa590a95b76f55b9546e5fc71 Mon Sep 17 00:00:00 2001 From: dborth Date: Tue, 24 Nov 2009 04:05:51 +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