diff --git a/src/app/MenuBar.cpp b/src/app/MenuBar.cpp index d24b4eef..ed9f8d82 100644 --- a/src/app/MenuBar.cpp +++ b/src/app/MenuBar.cpp @@ -836,9 +836,7 @@ struct HelpButton : MenuButton { menu->addChild(new ui::MenuSeparator); - menu->addChild(createMenuLabel(APP_NAME + " " + APP_EDITION_NAME)); - - menu->addChild(createMenuLabel(APP_VERSION)); + menu->addChild(createMenuLabel(APP_NAME + " " + APP_EDITION_NAME + " " + APP_VERSION)); } void step() override { diff --git a/src/window/Window.cpp b/src/window/Window.cpp index 008c5a6a..fff535e0 100644 --- a/src/window/Window.cpp +++ b/src/window/Window.cpp @@ -430,7 +430,7 @@ void Window::step() { gamepad::step(); // Set window title - std::string windowTitle = APP_NAME + " " + APP_VERSION_MAJOR + " " + APP_EDITION_NAME; + std::string windowTitle = APP_NAME + " " + APP_EDITION_NAME + " " + APP_VERSION; if (APP->patch->path != "") { windowTitle += " - "; if (!APP->history->isSaved())