diff options
-rw-r--r-- | scumm/script_v8.cpp | 2 | ||||
-rw-r--r-- | simon/simon.cpp | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/scumm/script_v8.cpp b/scumm/script_v8.cpp index 56e745abcb..b6e1aaae3a 100644 --- a/scumm/script_v8.cpp +++ b/scumm/script_v8.cpp @@ -1661,7 +1661,7 @@ void Scumm_v8::o8_getActorChore() { void Scumm_v8::o8_getActorZPlane() { int actnum = pop(); - Actor *a = derefActor(actnum, "o8_getActorChore"); + Actor *a = derefActor(actnum, "o8_getActorZPlane"); int z = a->forceClip; if (z == 100) { diff --git a/simon/simon.cpp b/simon/simon.cpp index 278c15301c..6e58d81931 100644 --- a/simon/simon.cpp +++ b/simon/simon.cpp @@ -3366,6 +3366,7 @@ void SimonState::processSpecialKeys() { case 'i': if (_debugMode) _draw_images_debug ^= 1; + break; } _key_pressed = 0; |