From 9df1f0276df426f227654827ce6f115924bca9a6 Mon Sep 17 00:00:00 2001 From: MayImilae Date: Sun, 22 Jan 2023 00:19:51 -0800 Subject: [PATCH] Don't Write OSD Messages to the titlebar Turns out all OSD messages, every single one, are written to the titlebar. We've just never seen them because the FPS is in the title bar and it replaces it in a fraction of a second. This was only visible when saving savestates because it halts emulation for a moment while writing. This is dumb, let's not do that anymore. --- Source/Core/Core/Core.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Source/Core/Core/Core.cpp b/Source/Core/Core/Core.cpp index 59306619e1..176e6ed2d5 100644 --- a/Source/Core/Core/Core.cpp +++ b/Source/Core/Core/Core.cpp @@ -180,7 +180,6 @@ void DisplayMessage(std::string message, int time_in_ms) if (!std::all_of(message.begin(), message.end(), IsPrintableCharacter)) return; - Host_UpdateTitle(message); OSD::AddMessage(std::move(message), time_in_ms); }