mirror of
https://github.com/libretro/Mesen.git
synced 2025-02-18 15:49:12 +00:00
Run Ahead: Turn off runahead when fast forwarding
This commit is contained in:
parent
9be0da4ea6
commit
13e358a47c
@ -764,7 +764,7 @@ void Console::Run()
|
||||
try {
|
||||
while(true) {
|
||||
stringstream runAheadState;
|
||||
bool useRunAhead = _settings->GetRunAheadFrames() > 0 && !_debugger && !_rewindManager->IsRewinding();
|
||||
bool useRunAhead = _settings->GetRunAheadFrames() > 0 && !_debugger && !_rewindManager->IsRewinding() && _settings->GetEmulationSpeed() > 0 && _settings->GetEmulationSpeed() <= 100;
|
||||
if(useRunAhead) {
|
||||
RunFrameWithRunAhead(runAheadState);
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user