From 2ca84c131aef7e6dfd237a305750fbb53c76b305 Mon Sep 17 00:00:00 2001 From: Ran-j Date: Sat, 27 Dec 2025 14:30:03 -0300 Subject: [PATCH] feat: call main entrypoint from the ps2 game (next commits will fix some missing feature for it) --- ps2xRecomp/src/code_generator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ps2xRecomp/src/code_generator.cpp b/ps2xRecomp/src/code_generator.cpp index 37a3788..97a2cf7 100644 --- a/ps2xRecomp/src/code_generator.cpp +++ b/ps2xRecomp/src/code_generator.cpp @@ -2774,7 +2774,7 @@ namespace ps2recomp { ss << " SET_GPR_U32(ctx, 29, bss_end);\n"; } - ss << " InitThread(rdram, ctx, runtime);\n"; + ss << " ps2_main(rdram, ctx, runtime);\n"; ss << "}\n"; return ss.str(); }