diff --git a/scumm/script_v8.cpp b/scumm/script_v8.cpp index 56e745abcb1..b6e1aaae3aa 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 278c15301c5..6e58d81931b 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;