From d24ca9d73d8a1bdfd2bcf02bc9a9ff46f6053794 Mon Sep 17 00:00:00 2001 From: georgemoralis Date: Thu, 10 Jul 2025 21:13:57 +0300 Subject: [PATCH] restore main --- src/main.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 52fd748b2..fe245d104 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -30,7 +30,7 @@ int main(int argc, char* argv[]) { bool has_game_argument = false; std::string game_path; std::vector game_args{}; -#if 0 + // Map of argument strings to lambda functions std::unordered_map> arg_map = { {"-h", @@ -204,8 +204,7 @@ int main(int argc, char* argv[]) { return 1; } } -#endif - const char* const eboot_path = "D:/ps4/sdk-samples/memrec.elf"; + // Run the emulator with the resolved eboot path Core::Emulator emulator; emulator.Run(eboot_path, game_args);