From 098a2e44080c6286cc4252287922fd9abfeee4dc Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Fri, 15 Dec 2017 08:13:22 +0100 Subject: [PATCH] fixed bug with keyboard/joystick events unpausing MM style games --- src/events.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/events.c b/src/events.c index 349d75fb..84652764 100644 --- a/src/events.c +++ b/src/events.c @@ -1824,7 +1824,7 @@ void HandleKey(Key key, int key_status) else stored_player[pnr].action &= ~key_action; - if (tape.single_step && tape.recording && tape.pausing) + if (tape.single_step && tape.recording && tape.pausing && !tape.use_mouse) { if (key_status == KEY_PRESSED && key_action & KEY_MOTION) { @@ -2328,7 +2328,7 @@ void HandleJoystick() return; } - if (tape.recording && tape.pausing) + if (tape.recording && tape.pausing && !tape.use_mouse) { if (joystick & JOY_ACTION) TapeTogglePause(TAPE_TOGGLE_MANUAL); -- 2.34.1