From 34c36c09ffdf2a6469018b4c8bda14d79535863d Mon Sep 17 00:00:00 2001 From: lightningterror <18107717+lightningterror@users.noreply.github.com> Date: Wed, 22 Jun 2022 13:58:26 +0200 Subject: [PATCH] wx: Rename gsdx to gs for window title statistics. --- pcsx2/GS/Renderers/OpenGL/GSTextureOGL.cpp | 2 +- pcsx2/gui/AppConfig.cpp | 2 +- pcsx2/gui/FrameForGS.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pcsx2/GS/Renderers/OpenGL/GSTextureOGL.cpp b/pcsx2/GS/Renderers/OpenGL/GSTextureOGL.cpp index 63a4b9ac46..fba5b77e69 100644 --- a/pcsx2/GS/Renderers/OpenGL/GSTextureOGL.cpp +++ b/pcsx2/GS/Renderers/OpenGL/GSTextureOGL.cpp @@ -605,7 +605,7 @@ GSTexture::GSMap GSTextureOGL::Read(const GSVector4i& r, AlignedBuffer& buffer.MakeRoomFor(m.pitch * r.height()); m.bits = buffer.GetPtr(); - // The fastest way will be to use a PBO to read the data asynchronously. Unfortunately GSdx + // The fastest way will be to use a PBO to read the data asynchronously. Unfortunately GS // architecture is waiting the data right now. // Bind the texture to the read framebuffer to avoid any disturbance diff --git a/pcsx2/gui/AppConfig.cpp b/pcsx2/gui/AppConfig.cpp index daa74f9c74..d48190dbc1 100644 --- a/pcsx2/gui/AppConfig.cpp +++ b/pcsx2/gui/AppConfig.cpp @@ -944,7 +944,7 @@ AppConfig::UiTemplateOptions::UiTemplateOptions() OutputProgressive = L"Progressive"; OutputInterlaced = L"Interlaced"; Paused = L" "; - TitleTemplate = L"Slot: ${slot} | Speed: ${speed} (${vfps}) | ${videomode} | Limiter: ${limiter} | ${gsdx} | ${omodei} | ${cpuusage}"; + TitleTemplate = L"Slot: ${slot} | Speed: ${speed} (${vfps}) | ${videomode} | Limiter: ${limiter} | ${gs} | ${omodei} | ${cpuusage}"; RecordingTemplate = L"Slot: ${slot} | Frame: ${frame}/${maxFrame} | Rec. Mode: ${mode} | Speed: ${speed} (${vfps}) | Limiter: ${limiter}"; } diff --git a/pcsx2/gui/FrameForGS.cpp b/pcsx2/gui/FrameForGS.cpp index de08c60294..83edb0c87a 100644 --- a/pcsx2/gui/FrameForGS.cpp +++ b/pcsx2/gui/FrameForGS.cpp @@ -921,7 +921,7 @@ void GSFrame::OnUpdateTitle( wxTimerEvent& evt ) title.Replace(L"${cpuusage}", cpuUsage); title.Replace(L"${omodef}", omodef); title.Replace(L"${omodei}", omodei); - title.Replace(L"${gsdx}", StringUtil::UTF8StringToWxString(gsStats)); + title.Replace(L"${gs}", StringUtil::UTF8StringToWxString(gsStats)); title.Replace(L"${videomode}", ReportVideoMode()); if (CoreThread.IsPaused() && !GSDump::isRunning) title = templates.Paused + title;