Applied feedback from @raphaelthegreat

This commit is contained in:
raziel1000 2024-07-25 01:13:14 -06:00 committed by georgemoralis
parent b62836d29f
commit fa76a723ad
6 changed files with 22 additions and 8 deletions

View file

@ -95,7 +95,8 @@ void Emulator::Run(const std::filesystem::path& file) {
}
}
}
std::string game_title = id + " - " + title + " <" + app_version + ">";
std::string game_title = fmt::format("{} - {} <{}>", id, title, app_version);
window =
std::make_unique<Frontend::WindowSDL>(WindowWidth, WindowHeight, controller, game_title);