From 48331e4e701a1f4081cfb2cc5dc47257ac05414e Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Mon, 24 May 2021 09:44:14 -0400 Subject: [PATCH] Add app variant name to window title. --- src/window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/window.cpp b/src/window.cpp index 6f0b6f48..5d29eb89 100644 --- a/src/window.cpp +++ b/src/window.cpp @@ -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())