Fix for Bucky @ 44100hz sound rate

This commit is contained in:
dinkc64 2014-12-21 09:47:31 +00:00
parent 1304e1e33e
commit 58a7e95b9c
1 changed files with 5 additions and 1 deletions

View File

@ -1005,7 +1005,11 @@ static INT32 BuckyInit()
EEPROMInit(&moo_eeprom_interface);
BurnYM2151Init(4000000);
if (nBurnSoundRate == 44100) {
BurnYM2151Init(3700000); // 3.7mhz here to match the tuning of the 48000khz k054539 chip, otherwise the music sounds horrible! - dink Nov.7.2014
} else {
BurnYM2151Init(4000000);
}
BurnYM2151SetRoute(BURN_SND_YM2151_YM2151_ROUTE_1, 0.50, BURN_SND_ROUTE_LEFT);
BurnYM2151SetRoute(BURN_SND_YM2151_YM2151_ROUTE_2, 0.50, BURN_SND_ROUTE_RIGHT);