mirror of
https://github.com/PCSX2/pcsx2.git
synced 2025-12-16 04:08:48 +00:00
Qt/FSUI: Few Save State String Fixes
This commit is contained in:
parent
4e763d6ff7
commit
47fe2344a5
@ -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<int>(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",
|
||||
|
||||
@ -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;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user