From 19593bc6d7fd0d1c5d38188d725ed35cd5bbb323 Mon Sep 17 00:00:00 2001 From: Xphalnos <164882787+Xphalnos@users.noreply.github.com> Date: Tue, 30 Jul 2024 21:49:11 +0200 Subject: [PATCH] Header display like RPCS3 --- src/emulator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emulator.cpp b/src/emulator.cpp index 5b162e056..9969ff3a2 100644 --- a/src/emulator.cpp +++ b/src/emulator.cpp @@ -106,7 +106,7 @@ void Emulator::Run(const std::filesystem::path& file) { } } } - std::string game_title = fmt::format("{} - {} <{}>", id, title, app_version); + std::string game_title = fmt::format("{} [{}] <{}>", title, id, app_version); window = std::make_unique(WindowWidth, WindowHeight, controller, game_title);