Merge pull request #606 from mikusp/master

Use current version in Qt window title
This commit is contained in:
Henrik Rydgård
2013-02-05 04:41:35 -08:00
+1 -2
View File
@@ -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);
}