Fixed extra #ifdef token warning in sound.c

This commit is contained in:
Rupert Carmichael 2020-01-05 00:40:39 -05:00
parent 66eb0520d1
commit f4d0f74c74

View File

@ -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];