Skip to content

Commit

Permalink
Merge pull request #13866 from unknownbrackets/rewind
Browse files Browse the repository at this point in the history
SaveState: Allow rewind on mobile
  • Loading branch information
hrydgard authored Jan 3, 2021
2 parents ac69d93 + fd7d8a7 commit f0784de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Core/KeyMap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -681,9 +681,9 @@ const KeyMap_IntStrPair psp_button_names[] = {
{VIRTKEY_PAUSE, "Pause"},
#ifndef MOBILE_DEVICE
{VIRTKEY_FRAME_ADVANCE, "Frame Advance"},
{VIRTKEY_REWIND, "Rewind"},
{VIRTKEY_RECORD, "Audio/Video Recording" },
#endif
{VIRTKEY_REWIND, "Rewind"},
{VIRTKEY_SAVE_STATE, "Save State"},
{VIRTKEY_LOAD_STATE, "Load State"},
{VIRTKEY_NEXT_SLOT, "Next Slot"},
Expand Down
6 changes: 1 addition & 5 deletions Core/SaveState.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,6 @@ namespace SaveState
return false;
}

#ifndef MOBILE_DEVICE
static inline void CheckRewindState()
{
if (gpuStats.numFlips % g_Config.iRewindFlipFrequency != 0)
Expand All @@ -689,10 +688,9 @@ namespace SaveState
return;

rewindLastTime = now;
DEBUG_LOG(BOOT, "saving rewind state");
DEBUG_LOG(BOOT, "Saving rewind state");
rewindStates.Save();
}
#endif

bool HasLoadedState() {
return hasLoadedState;
Expand All @@ -719,10 +717,8 @@ namespace SaveState

void Process()
{
#ifndef MOBILE_DEVICE
if (g_Config.iRewindFlipFrequency != 0 && gpuStats.numFlips != 0)
CheckRewindState();
#endif

if (!needsProcess)
return;
Expand Down

0 comments on commit f0784de

Please sign in to comment.