change setPAL to setFlags

This commit is contained in:
tildearrow 2022-01-28 12:59:53 -05:00
parent 8c353548f5
commit bfed0b3209
35 changed files with 85 additions and 83 deletions

View file

@ -4750,7 +4750,8 @@ void DivEngine::setSongRate(int hz, bool pal) {
song.hz=hz;
song.customTempo=(song.hz!=50 && song.hz!=60);
for (int i=0; i<song.systemLen; i++) {
disCont[i].dispatch->setPAL((!song.pal) || (song.customTempo!=0 && song.hz<53));
// TODO
disCont[i].dispatch->setFlags((!song.pal) || (song.customTempo!=0 && song.hz<53));
disCont[i].setRates(got.rate);
}
divider=60;