notaz.gp2x.de
/
pcsx_rearmed.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
609aa81
)
hack interpreter so that it can return to menu
author
notaz
<notasas@gmail.com>
Mon, 10 Jan 2011 21:22:59 +0000
(23:22 +0200)
committer
notaz
<notasas@gmail.com>
Mon, 10 Jan 2011 21:22:59 +0000
(23:22 +0200)
libpcsxcore/psxinterpreter.c
patch
|
blob
|
blame
|
history
diff --git
a/libpcsxcore/psxinterpreter.c
b/libpcsxcore/psxinterpreter.c
index
1f4b46c
..
08b656f
100644
(file)
--- 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();
}