mirror of https://github.com/stella-emu/stella.git
disabled test for "auto" frame rate
This commit is contained in:
parent
6fe5f3b197
commit
a5e7911930
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue