From f4d0f74c743fe89b1fe9cee65b922e870d8c0295 Mon Sep 17 00:00:00 2001 From: Rupert Carmichael <5050061-carmiker@users.noreply.gitlab.com> Date: Sun, 5 Jan 2020 00:40:39 -0500 Subject: [PATCH] Fixed extra #ifdef token warning in sound.c --- core/sound/sound.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/sound/sound.c b/core/sound/sound.c index 616b6f5..c2689b0 100644 --- a/core/sound/sound.c +++ b/core/sound/sound.c @@ -44,7 +44,7 @@ #define YM2612_CLOCK_RATIO (7*6) /* FM output buffer (large enough to hold a whole frame at original chips rate) */ -#ifdef HAVE_YM3438_CORE || HAVE_OPLL_CORE +#if defined(HAVE_YM3438_CORE) || defined(HAVE_OPLL_CORE) static int fm_buffer[1080 * 2 * 24]; #else static int fm_buffer[1080 * 2];