Browse Source

Add app variant name to window title.

tags/v2.0.0
Andrew Belt 4 years ago
parent
commit
48331e4e70
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/window.cpp

+ 1
- 1
src/window.cpp View File

@@ -379,7 +379,7 @@ void Window::step() {
gamepad::step();

// Set window title
std::string windowTitle = APP_NAME + " " + APP_VERSION;
std::string windowTitle = APP_NAME + " " + APP_VARIANT + " " + APP_VERSION;
if (APP->patch->path != "") {
windowTitle += " - ";
if (!APP->history->isSaved())


Loading…
Cancel
Save