Browse Source

Patched to compile on non-Emscripten targets.

Ryan C. Gordon 10 years ago
parent
commit
707c11f64f
1 changed files with 2 additions and 0 deletions
  1. 2 0
      test/loopwave.c

+ 2 - 0
test/loopwave.c

@@ -79,12 +79,14 @@ poked(int sig)
     done = 1;
 }
 
+#ifdef __EMSCRIPTEN__
 void
 loop()
 {
     if(done || (SDL_GetAudioStatus() != SDL_AUDIO_PLAYING))
         emscripten_cancel_main_loop();
 }
+#endif
 
 int
 main(int argc, char *argv[])