hack interpreter so that it can return to menu
authornotaz <notasas@gmail.com>
Mon, 10 Jan 2011 21:22:59 +0000 (23:22 +0200)
committernotaz <notasas@gmail.com>
Mon, 10 Jan 2011 21:22:59 +0000 (23:22 +0200)
libpcsxcore/psxinterpreter.c

index 1f4b46c..08b656f 100644 (file)
@@ -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();
 }