mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
small fix for undo load state while not recording
This commit is contained in:
@ -389,7 +389,10 @@ void LoadAs(const std::string& filename)
|
||||
{
|
||||
std::lock_guard<std::mutex> lk(g_cs_undo_load_buffer);
|
||||
SaveToBuffer(g_undo_load_buffer);
|
||||
Movie::SaveRecording("undo.dtm");
|
||||
if (Movie::IsRecordingInput() || Movie::IsPlayingInput())
|
||||
Movie::SaveRecording("undo.dtm");
|
||||
else if (File::Exists("undo.dtm"))
|
||||
File::Delete("undo.dtm");
|
||||
}
|
||||
|
||||
bool loaded = false;
|
||||
|
Reference in New Issue
Block a user