This commit is contained in:
thrust26 2020-05-19 10:19:48 +02:00
parent 0f751d268c
commit 2722435f36
1 changed files with 1 additions and 1 deletions

View File

@ -482,7 +482,7 @@ int FrameBufferSDL2::gameRefreshRate() const
const string format = myOSystem.console().getFormatString();
const bool isNtsc = format == "NTSC" || format == "PAL60" || format == "SECAM60";
return isNtsc ? 75 : 50; // TODO: check for multiples e.g. 120/100 too
return isNtsc ? 60 : 50; // TODO: check for multiples e.g. 120/100 too
}
return 60;
}