From 7f3d8a1ad4fa34307d4d7d3b4b50a0fe635c15f5 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Mon, 10 Mar 2025 18:53:44 -0500 Subject: [PATCH] VideoConfig: Eliminate NetPlay related members. --- Source/Core/Core/NetPlayClient.cpp | 3 ++- Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp | 3 ++- Source/Core/VideoCommon/OnScreenUI.cpp | 3 ++- Source/Core/VideoCommon/VideoConfig.cpp | 2 -- Source/Core/VideoCommon/VideoConfig.h | 2 -- 5 files changed, 6 insertions(+), 7 deletions(-) diff --git a/Source/Core/Core/NetPlayClient.cpp b/Source/Core/Core/NetPlayClient.cpp index c66a13da6e..31a8ae7add 100644 --- a/Source/Core/Core/NetPlayClient.cpp +++ b/Source/Core/Core/NetPlayClient.cpp @@ -37,6 +37,7 @@ #include "Core/ActionReplay.h" #include "Core/Boot/Boot.h" +#include "Core/Config/GraphicsSettings.h" #include "Core/Config/MainSettings.h" #include "Core/Config/NetplaySettings.h" #include "Core/Config/SessionSettings.h" @@ -1530,7 +1531,7 @@ void NetPlayClient::Send(const sf::Packet& packet, const u8 channel_id) void NetPlayClient::DisplayPlayersPing() { - if (!g_ActiveConfig.bShowNetPlayPing) + if (!Config::Get(Config::GFX_SHOW_NETPLAY_PING)) return; OSD::AddTypedMessage(OSD::MessageType::NetPlayPing, fmt::format("Ping: {}", GetPlayersMaxPing()), diff --git a/Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp b/Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp index 70c6faa0ac..2661b7ac94 100644 --- a/Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp +++ b/Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp @@ -805,7 +805,8 @@ void NetPlayDialog::DisplayMessage(const QString& msg, const std::string& color, QColor c(color.empty() ? QStringLiteral("white") : QString::fromStdString(color)); - if (g_ActiveConfig.bShowNetPlayMessages && Core::IsRunning(Core::System::GetInstance())) + if (Config::Get(Config::GFX_SHOW_NETPLAY_MESSAGES) && + Core::IsRunning(Core::System::GetInstance())) { g_netplay_chat_ui->AppendChat(msg.toStdString(), {static_cast(c.redF()), static_cast(c.greenF()), diff --git a/Source/Core/VideoCommon/OnScreenUI.cpp b/Source/Core/VideoCommon/OnScreenUI.cpp index 23e11ce1cf..d1c15f7f80 100644 --- a/Source/Core/VideoCommon/OnScreenUI.cpp +++ b/Source/Core/VideoCommon/OnScreenUI.cpp @@ -8,6 +8,7 @@ #include "Common/Timer.h" #include "Core/AchievementManager.h" +#include "Core/Config/GraphicsSettings.h" #include "Core/Config/MainSettings.h" #include "Core/Config/NetplaySettings.h" #include "Core/Movie.h" @@ -314,7 +315,7 @@ void OnScreenUI::DrawDebugText() if (g_ActiveConfig.bOverlayStats) g_stats.Display(); - if (g_ActiveConfig.bShowNetPlayMessages && g_netplay_chat_ui) + if (Config::Get(Config::GFX_SHOW_NETPLAY_MESSAGES) && g_netplay_chat_ui) g_netplay_chat_ui->Display(); if (Config::Get(Config::NETPLAY_GOLF_MODE_OVERLAY) && g_netplay_golf_ui) diff --git a/Source/Core/VideoCommon/VideoConfig.cpp b/Source/Core/VideoCommon/VideoConfig.cpp index 0dec193b7a..6eb92dbaa7 100644 --- a/Source/Core/VideoCommon/VideoConfig.cpp +++ b/Source/Core/VideoCommon/VideoConfig.cpp @@ -104,8 +104,6 @@ void VideoConfig::Refresh() bShowSpeed = Config::Get(Config::GFX_SHOW_SPEED); bShowSpeedColors = Config::Get(Config::GFX_SHOW_SPEED_COLORS); iPerfSampleUSec = Config::Get(Config::GFX_PERF_SAMP_WINDOW) * 1000; - bShowNetPlayPing = Config::Get(Config::GFX_SHOW_NETPLAY_PING); - bShowNetPlayMessages = Config::Get(Config::GFX_SHOW_NETPLAY_MESSAGES); bLogRenderTimeToFile = Config::Get(Config::GFX_LOG_RENDER_TIME_TO_FILE); bOverlayStats = Config::Get(Config::GFX_OVERLAY_STATS); bOverlayProjStats = Config::Get(Config::GFX_OVERLAY_PROJ_STATS); diff --git a/Source/Core/VideoCommon/VideoConfig.h b/Source/Core/VideoCommon/VideoConfig.h index 9e7bf950a2..c8c31c56a8 100644 --- a/Source/Core/VideoCommon/VideoConfig.h +++ b/Source/Core/VideoCommon/VideoConfig.h @@ -239,8 +239,6 @@ struct VideoConfig final bool bShowSpeed = false; bool bShowSpeedColors = false; int iPerfSampleUSec = 0; - bool bShowNetPlayPing = false; - bool bShowNetPlayMessages = false; bool bOverlayStats = false; bool bOverlayProjStats = false; bool bOverlayScissorStats = false;