diff --git a/bin/PCSX2_keys.ini.default b/bin/PCSX2_keys.ini.default index 512ef0112f..d478349827 100644 --- a/bin/PCSX2_keys.ini.default +++ b/bin/PCSX2_keys.ini.default @@ -57,8 +57,6 @@ Sys_TakeSnapshot = F8 Sys_RenderswitchToggle = F9 Sys_LoggingToggle = F10 -# The FreezeGS function is currently disabled internally. -Sys_FreezeGS = F11 Sys_RecordingToggle = F12 GSwindow_CycleAspectRatio = F6 diff --git a/pcsx2/gui/GlobalCommands.cpp b/pcsx2/gui/GlobalCommands.cpp index b4f0f97f56..12f3d762dd 100644 --- a/pcsx2/gui/GlobalCommands.cpp +++ b/pcsx2/gui/GlobalCommands.cpp @@ -416,34 +416,6 @@ namespace Implementations #endif } - void Sys_FreezeGS() - { - // fixme : fix up gsstate mess and make it mtgs compatible -- air -#ifdef _STGS_GSSTATE_CODE - wxString Text; - if (strgametitle[0] != 0) - { - // only take the first two words - wxString gsText; - - wxStringTokenizer parts(strgametitle, L" "); - - wxString name(parts.GetNextToken()); // first part - wxString part2(parts.GetNextToken()); - - if (!!part2) - name += L"_" + part2; - - gsText.Printf(L"%s.%d.gs", WX_STR(name), StatesC); - Text = Path::Combine(g_Conf->Folders.Savestates, gsText); - } - else - { - Text = GetGSStateFilename(); - } -#endif - } - void Sys_RecordingToggle() { ScopedCoreThreadPause paused_core; @@ -805,13 +777,6 @@ static const GlobalCommandDescriptor CommandDeclarations[] = false, }, - { - "Sys_FreezeGS", - Implementations::Sys_FreezeGS, - NULL, - NULL, - false, - }, { "Sys_RecordingToggle", Implementations::Sys_RecordingToggle,