mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-26 08:44:47 +02:00
Merge pull request #606 from mikusp/master
Use current version in Qt window title
This commit is contained in:
+1
-2
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user