disabled test for "auto" frame rate

This commit is contained in:
thrust26 2018-01-21 10:19:28 +01:00
parent 6fe5f3b197
commit a5e7911930
1 changed files with 2 additions and 2 deletions

View File

@ -394,12 +394,12 @@ void FrameBuffer::drawFrameStats()
myStatsMsg.w, color, TextAlign::Left, 0, true, kBGColor);
// draw framerate
float frameRate;
if(myOSystem.settings().getInt("framerate") == 0)
/*if(myOSystem.settings().getInt("framerate") == 0)
{
// if 'Auto' is selected, draw the calculated framerate
frameRate = myOSystem.console().getFramerate();
}
else
else*/
{
// if 'Auto' is not selected, draw the effective framerate
const TimingInfo& ti = myOSystem.timingInfo();