Skip to content

Commit

Permalink
this makes more sense
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaklyy committed Sep 26, 2024
1 parent 39fe562 commit e6a10fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontend/qt_sdl/EmuThread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -361,8 +361,8 @@ void EmuThread::run()
slowmo = enableslowmo;

if (slowmo) emuInstance->curFPS = emuInstance->slowmoFPS;
else if (!emuInstance->doLimitFPS) emuInstance->curFPS = 1.0 / 1000.0;
else if (fastforward) emuInstance->curFPS = emuInstance->fastForwardFPS;
else if (!emuInstance->doLimitFPS) emuInstance->curFPS = 1.0 / 1000.0;
else emuInstance->curFPS = emuInstance->targetFPS;

if (emuInstance->audioDSiVolumeSync && emuInstance->nds->ConsoleType == 1)
Expand Down

0 comments on commit e6a10fd

Please sign in to comment.