Merge pull request #301 from carmiker/master

Fixed extra #ifdef token warning in sound.c
This commit is contained in:
ekeeke 2020-01-05 09:57:31 +01:00 committed by GitHub
commit 74ad967dfe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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