diff --git a/soh/soh/Enhancements/QoL/Autosave.cpp b/soh/soh/Enhancements/QoL/Autosave.cpp index 3ec3240048..3395c95640 100644 --- a/soh/soh/Enhancements/QoL/Autosave.cpp +++ b/soh/soh/Enhancements/QoL/Autosave.cpp @@ -75,6 +75,7 @@ static void Autosave_SoftResetSave() { } static void RegisterAutosave() { + lastSaveTimestamp = GetUnixTimestamp(); COND_HOOK(GameInteractor::OnLoadGame, CVAR_AUTOSAVE_VALUE, [](uint32_t fileNme) { lastSaveTimestamp = GetUnixTimestamp(); }); COND_HOOK(GameInteractor::OnGameFrameUpdate, CVAR_AUTOSAVE_VALUE, Autosave_IntervalSave);