OPLL: and now fix match

This commit is contained in:
tildearrow 2024-04-30 02:20:37 -05:00
parent 1688fc012e
commit 2a4383b4de

View file

@ -1173,7 +1173,11 @@ void DivPlatformOPLL::setFlags(const DivConfig& flags) {
if (selCore==1) {
oscBuf[i]->rate=rate;
} else {
oscBuf[i]->rate=rate/2;
if (i>=6 && properDrumsSys) {
oscBuf[i]->rate=rate;
} else {
oscBuf[i]->rate=rate/2;
}
}
}
noTopHatFreq=flags.getBool("noTopHatFreq",false);