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

@ -1172,10 +1172,14 @@ void DivPlatformOPLL::setFlags(const DivConfig& flags) {
for (int i=0; i<11; i++) {
if (selCore==1) {
oscBuf[i]->rate=rate;
} else {
if (i>=6 && properDrumsSys) {
oscBuf[i]->rate=rate;
} else {
oscBuf[i]->rate=rate/2;
}
}
}
noTopHatFreq=flags.getBool("noTopHatFreq",false);
fixedAll=flags.getBool("fixedAll",true);
}