From cc02ef64a524a8c8b2bf2093e60f85d244094ae5 Mon Sep 17 00:00:00 2001 From: elad Date: Mon, 15 Jan 2018 20:16:50 +0200 Subject: [PATCH] [GUI] remove the letter v from the emu's version --- rpcs3/rpcs3qt/main_window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/rpcs3qt/main_window.cpp b/rpcs3/rpcs3qt/main_window.cpp index 7d6f854a2f..50b3641116 100644 --- a/rpcs3/rpcs3qt/main_window.cpp +++ b/rpcs3/rpcs3qt/main_window.cpp @@ -105,7 +105,7 @@ void main_window::Init() CreateConnects(); setMinimumSize(350, minimumSizeHint().height()); // seems fine on win 10 - setWindowTitle(QString::fromStdString("RPCS3 v" + rpcs3::version.to_string())); + setWindowTitle(QString::fromStdString("RPCS3 " + rpcs3::version.to_string())); Q_EMIT RequestGlobalStylesheetChange(guiSettings->GetCurrentStylesheetPath()); ConfigureGuiFromSettings(true);