From 47fe2344a51e8e6ce28fe627b8412a3d0511b5b8 Mon Sep 17 00:00:00 2001 From: KamFretoZ <14798312+kamfretoz@users.noreply.github.com> Date: Tue, 9 Dec 2025 08:43:17 +0700 Subject: [PATCH] Qt/FSUI: Few Save State String Fixes --- pcsx2/ImGui/FullscreenUI.cpp | 2 +- pcsx2/Recording/InputRecording.cpp | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pcsx2/ImGui/FullscreenUI.cpp b/pcsx2/ImGui/FullscreenUI.cpp index abbb50f856..e61642848e 100644 --- a/pcsx2/ImGui/FullscreenUI.cpp +++ b/pcsx2/ImGui/FullscreenUI.cpp @@ -6613,7 +6613,7 @@ void FullscreenUI::DrawAdvancedSettingsPage() FSUI_CSTR("Performs just-in-time binary translation of 32-bit MIPS-I machine code to native code."), "EmuCore/CPU/Recompiler", "EnableIOP", true); - MenuHeading(FSUI_CSTR("Savestate")); + MenuHeading(FSUI_CSTR("Save State Management")); DrawIntListSetting(bsi, FSUI_ICONSTR(ICON_FA_BOX_OPEN, "Compression Method"), FSUI_CSTR("Sets the compression algorithm for savestate."), "EmuCore", "SavestateCompressionType", static_cast(SavestateCompressionMethod::Zstandard), s_savestate_compression_type, std::size(s_savestate_compression_type), true); DrawIntListSetting(bsi, FSUI_ICONSTR(ICON_FA_COMPRESS, "Compression Level"), FSUI_CSTR("Sets the compression level for savestate."), "EmuCore", diff --git a/pcsx2/Recording/InputRecording.cpp b/pcsx2/Recording/InputRecording.cpp index 35c947d2e9..8728cf71b4 100644 --- a/pcsx2/Recording/InputRecording.cpp +++ b/pcsx2/Recording/InputRecording.cpp @@ -103,7 +103,7 @@ bool InputRecording::play(const std::string& filename) const auto loaded = VMManager::LoadState(savestatePath.c_str()); if (!loaded) { - InputRec::log(TRANSLATE_STR("InputRecording", "Savestate load failed for input recording, unsupported version?"), Host::OSD_ERROR_DURATION); + InputRec::log(TRANSLATE_STR("InputRecording", "Load state failed for input recording, unsupported version?"), Host::OSD_ERROR_DURATION); m_file.close(); m_is_active = false; return false; @@ -343,7 +343,7 @@ void InputRecording::adjustFrameCounterOnReRecord(u32 newFrameCounter) if (newFrameCounter > m_starting_frame + m_file.getTotalFrames()) { InputRec::consoleLog("Warning, you've loaded PCSX2 emulation to a point after the end of the original recording. This should be avoided."); - InputRec::consoleLog("Savestate's framecount has been ignored, using the max length of the recording instead."); + InputRec::consoleLog("Save state's framecount has been ignored, using the max length of the recording instead."); m_frame_counter = m_file.getTotalFrames(); if (getControls().isReplaying()) { @@ -354,7 +354,7 @@ void InputRecording::adjustFrameCounterOnReRecord(u32 newFrameCounter) if (newFrameCounter < m_starting_frame) { InputRec::consoleLog("Warning, you've loaded PCSX2 emulation to a point before the start of the original recording. This should be avoided."); - InputRec::consoleLog("Savestate's framecount has been ignored, starting from the beginning in replay mode."); + InputRec::consoleLog("Save state's framecount has been ignored, starting from the beginning in replay mode."); m_frame_counter = 0; if (getControls().isRecording()) {