X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=libpcsxcore%2Fpsxinterpreter.c;h=08b656f49b1a39dd94700c2cfbfbc531ece17e41;hp=1f4b46cd6883ea98eca53d6c1e6d0d3a9bad2cc5;hb=796a91ef98cca649bc62710491e2681b2ba8be1c;hpb=609aa81e7cec42c1d1cc4376b1bd5d9f1cdd6894 diff --git a/libpcsxcore/psxinterpreter.c b/libpcsxcore/psxinterpreter.c index 1f4b46cd..08b656f4 100644 --- a/libpcsxcore/psxinterpreter.c +++ b/libpcsxcore/psxinterpreter.c @@ -763,12 +763,13 @@ static int intInit() { static void intReset() { } -static void intExecute() { - for (;;) +void intExecute() { + extern int stop; + for (;!stop;) execI(); } -static void intExecuteBlock() { +void intExecuteBlock() { branch2 = 0; while (!branch2) execI(); }