mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
re-rearrange movie code so it actually works all of the time
This commit is contained in:
@ -103,7 +103,7 @@ struct DTMHeader {
|
|||||||
|
|
||||||
u64 recordingStartTime; // seconds since 1970 that recording started (used for RTC)
|
u64 recordingStartTime; // seconds since 1970 that recording started (used for RTC)
|
||||||
|
|
||||||
bool bSaveConfig;
|
bool bSaveConfig; // Loads the settings below on startup if true
|
||||||
bool bSkipIdle;
|
bool bSkipIdle;
|
||||||
bool bDualCore;
|
bool bDualCore;
|
||||||
bool bProgressive;
|
bool bProgressive;
|
||||||
|
@ -201,12 +201,11 @@ void CompressAndDumpState(CompressAndDumpState_args save_args)
|
|||||||
|
|
||||||
if (!File::Rename(filename, File::GetUserPath(D_STATESAVES_IDX) + "lastState.sav") || !File::Rename(filename + ".dtm", File::GetUserPath(D_STATESAVES_IDX) + "lastState.sav.dtm"))
|
if (!File::Rename(filename, File::GetUserPath(D_STATESAVES_IDX) + "lastState.sav") || !File::Rename(filename + ".dtm", File::GetUserPath(D_STATESAVES_IDX) + "lastState.sav.dtm"))
|
||||||
Core::DisplayMessage("Failed to move previous state to state undo backup", 1000);
|
Core::DisplayMessage("Failed to move previous state to state undo backup", 1000);
|
||||||
|
}
|
||||||
if ((Movie::IsRecordingInput() || Movie::IsPlayingInput()) && !Movie::IsJustStartingRecordingInputFromSaveState())
|
if ((Movie::IsRecordingInput() || Movie::IsPlayingInput()) && !Movie::IsJustStartingRecordingInputFromSaveState())
|
||||||
Movie::SaveRecording((filename + ".dtm").c_str());
|
Movie::SaveRecording((filename + ".dtm").c_str());
|
||||||
else if (!Movie::IsRecordingInput() && !Movie::IsPlayingInput())
|
else if (!Movie::IsRecordingInput() && !Movie::IsPlayingInput())
|
||||||
File::Delete(filename + ".dtm");
|
File::Delete(filename + ".dtm");
|
||||||
}
|
|
||||||
|
|
||||||
File::IOFile f(filename, "wb");
|
File::IOFile f(filename, "wb");
|
||||||
if (!f)
|
if (!f)
|
||||||
|
Reference in New Issue
Block a user