From a5af64c2581ed347ee25c605c88142947ef47974 Mon Sep 17 00:00:00 2001 From: georgemoralis Date: Tue, 9 Dec 2025 19:28:46 +0200 Subject: [PATCH] misc --- src/main.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index ea6dcfe8c..615e961f3 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -43,7 +43,7 @@ int main(int argc, char* argv[]) { bool waitForDebugger = false; std::optional waitPid; -#if 0 + // Map of argument strings to lambda functions std::unordered_map> arg_map = { {"-h", @@ -263,12 +263,11 @@ int main(int argc, char* argv[]) { if (waitPid.has_value()) { Core::Debugger::WaitForPid(waitPid.value()); } -#endif + // Run the emulator with the resolved eboot path Core::Emulator* emulator = Common::Singleton::Instance(); emulator->executableName = argv[0]; emulator->waitForDebuggerBeforeRun = waitForDebugger; - const char* const eboot_path = "D:/ps4/shadps4games/CUSA18992/eboot.bin"; emulator->Run(eboot_path, game_args, game_folder); return 0;