diff --git a/pcsx2/GS/GS.cpp b/pcsx2/GS/GS.cpp index 3111a73129..b0b62c1144 100644 --- a/pcsx2/GS/GS.cpp +++ b/pcsx2/GS/GS.cpp @@ -1676,7 +1676,7 @@ BEGIN_HOTKEY_LIST(g_gs_hotkeys){ }}; const GSInterlaceMode new_mode = static_cast((static_cast(EmuConfig.GS.InterlaceMode) + 1) % static_cast(GSInterlaceMode::Count)); - Host::AddKeyedFormattedOSDMessage("CycleInterlaceModeMode", 10.0f, "Deinterlace mode set to '%s'.", option_names[static_cast(new_mode)]); + Host::AddKeyedFormattedOSDMessage("CycleInterlaceMode", 10.0f, "Deinterlace mode set to '%s'.", option_names[static_cast(new_mode)]); EmuConfig.GS.InterlaceMode = new_mode; GetMTGS().RunOnGSThread([new_mode]() { GSConfig.InterlaceMode = new_mode; });