From a3e5aa1372221ba2870d62044620820ec75d76ec Mon Sep 17 00:00:00 2001 From: kotn3l Date: Mon, 19 Aug 2024 21:04:44 +0200 Subject: [PATCH] fix formatting oops --- src/emulator.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/emulator.cpp b/src/emulator.cpp index 83e09a76..51c93997 100644 --- a/src/emulator.cpp +++ b/src/emulator.cpp @@ -111,9 +111,7 @@ void Emulator::Run(const std::filesystem::path& file) { window_title = fmt::format("shadPS4 v{} {} | {}", Common::VERSION, Common::g_scm_desc, game_title); } - window = std::make_unique( - Config::getScreenWidth(), Config::getScreenHeight(), - controller, window_title); + window = std::make_unique(Config::getScreenWidth(), Config::getScreenHeight(), controller, window_title); g_window = window.get();