From 37ef84ef376cfdba70eef34e1cc80eecd256ea1c Mon Sep 17 00:00:00 2001 From: Henrik Rydgard Date: Fri, 17 Mar 2017 19:55:17 +0100 Subject: [PATCH] Fix another silly mixup, sigh --- Windows/WindowsHost.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Windows/WindowsHost.cpp b/Windows/WindowsHost.cpp index 40ef7d220c..2b91bd274d 100644 --- a/Windows/WindowsHost.cpp +++ b/Windows/WindowsHost.cpp @@ -151,9 +151,9 @@ void WindowsHost::ShutdownGraphics() { void WindowsHost::SetWindowTitle(const char *message) { #ifdef GOLD - const char *name = "PPSSPP "; -#else const char *name = "PPSSPP Gold "; +#else + const char *name = "PPSSPP "; #endif std::wstring winTitle = ConvertUTF8ToWString(std::string(name) + PPSSPP_GIT_VERSION); if (message != nullptr) {