From: David Griffith Date: Wed, 19 Jun 2019 07:38:50 +0000 (-0700) Subject: Reenable compiling with no sound. X-Git-Url: https://scope-eye.net/git/?a=commitdiff_plain;h=51352e71d31c4fde8565924a5fc877c76eeca1b4;p=liskon_frotz.git Reenable compiling with no sound. --- diff --git a/src/curses/ux_input.c b/src/curses/ux_input.c index f23d264..d9a5ab2 100644 --- a/src/curses/ux_input.c +++ b/src/curses/ux_input.c @@ -151,8 +151,10 @@ void os_tick() unix_resize_display(); } +#ifndef NO_SOUND if (sem_trywait(&sound_done) == 0) end_of_sound(); +#endif }