From 51352e71d31c4fde8565924a5fc877c76eeca1b4 Mon Sep 17 00:00:00 2001 From: David Griffith Date: Wed, 19 Jun 2019 00:38:50 -0700 Subject: [PATCH] Reenable compiling with no sound. --- src/curses/ux_input.c | 2 ++ 1 file changed, 2 insertions(+) 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 } -- 2.34.1