From 2a8dcbd6204348f2acccc33a779884797228015f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Miko=C5=82ajczyk?= Date: Tue, 5 Feb 2013 13:26:32 +0100 Subject: [PATCH] Use current version in Qt window title --- Qt/QtHost.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Qt/QtHost.cpp b/Qt/QtHost.cpp index 46642b6190..54468d2046 100644 --- a/Qt/QtHost.cpp +++ b/Qt/QtHost.cpp @@ -38,8 +38,7 @@ void QtHost::ShutdownGL() void QtHost::SetWindowTitle(const char *message) { - // Really need a better way to deal with versions. - QString title = "PPSSPP v0.5 - " + QString::fromUtf8(message); + QString title = "PPSSPP " + QString(PPSSPP_VERSION_STR) + " - " + QString::fromUtf8(message); mainWindow->setWindowTitle(title); }