Hotkeys: Make more formatting-friendly

pull/3732/head
Stenzek 5 months ago
parent b2d0fbdcb6
commit 54c6a9faa5
No known key found for this signature in database

File diff suppressed because it is too large Load Diff

@ -3732,7 +3732,7 @@ void System::SetRewindState(bool enabled)
UpdateSpeedLimiterState(); UpdateSpeedLimiterState();
} }
void System::DoFrameStep() void System::FrameStep()
{ {
if (!IsValid()) if (!IsValid())
return; return;
@ -3741,7 +3741,7 @@ void System::DoFrameStep()
{ {
Achievements::ConfirmHardcoreModeDisableAsync("Frame stepping", [](bool approved) { Achievements::ConfirmHardcoreModeDisableAsync("Frame stepping", [](bool approved) {
if (approved) if (approved)
DoFrameStep(); FrameStep();
}); });
return; return;
} }

@ -369,7 +369,7 @@ void SetTurboEnabled(bool enabled);
bool IsRewinding(); bool IsRewinding();
void SetRewindState(bool enabled); void SetRewindState(bool enabled);
void DoFrameStep(); void FrameStep();
/// Returns the path to a save state file. Specifying an index of -1 is the "resume" save state. /// Returns the path to a save state file. Specifying an index of -1 is the "resume" save state.
std::string GetGameSaveStatePath(std::string_view serial, s32 slot); std::string GetGameSaveStatePath(std::string_view serial, s32 slot);

Loading…
Cancel
Save