Skip to content

Commit

Permalink
SaveState: Fix stale state threshold.
Browse files Browse the repository at this point in the history
Micro not milli...
  • Loading branch information
unknownbrackets committed Jul 5, 2018
1 parent 7f88688 commit 1d430ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/SaveState.cpp
Expand Up @@ -243,7 +243,7 @@ namespace SaveState
static bool hasLoadedState = false;
static const int STALE_STATE_USES = 2;
// 4 hours of total gameplay since the virtual PSP started the game.
static const u64 STALE_STATE_TIME = 4 * 3600 * 1000;
static const u64 STALE_STATE_TIME = 4 * 3600 * 1000000ULL;
static int saveStateGeneration = 0;
static std::string saveStateInitialGitVersion = "";

Expand Down

0 comments on commit 1d430ff

Please sign in to comment.