From c07058a4ada4ca28c1621b50c9af3da7c70a0a65 Mon Sep 17 00:00:00 2001 From: Leo Lam Date: Tue, 6 Jun 2017 22:14:30 +0200 Subject: [PATCH] Don't show CPU and file related OSD messages on boot (#5533) They have been broken since 2 years and no one has noticed, which shows that no one really cares. And it's arguable whether showing the CPU info is really useful. --- Source/Core/Core/Core.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Source/Core/Core/Core.cpp b/Source/Core/Core/Core.cpp index bdddfbadb4..5c2be41259 100644 --- a/Source/Core/Core/Core.cpp +++ b/Source/Core/Core/Core.cpp @@ -468,11 +468,6 @@ static void EmuThread(std::unique_ptr boot) Common::SetCurrentThreadName("Emuthread - Starting"); - if (SConfig::GetInstance().m_OCEnable) - DisplayMessage("WARNING: running at non-native CPU clock! Game may not be stable.", 8000); - DisplayMessage(cpu_info.brand_string, 8000); - DisplayMessage(cpu_info.Summarize(), 8000); - // For a time this acts as the CPU thread... DeclareAsCPUThread();