From 1eb84ec23ba8db3b68f373d6077a6e923e244e35 Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Sun, 21 Jun 2015 16:20:25 +0200 Subject: [PATCH] fixed hiding mouse cursor in single-setp mode --- src/events.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/events.c b/src/events.c index 041c49b4..5f80c5de 100644 --- a/src/events.c +++ b/src/events.c @@ -218,7 +218,8 @@ void EventLoop(void) SetMouseCursor(CURSOR_NONE); } } - else if (game_status == GAME_MODE_PLAYING && !tape.pausing) + else if (game_status == GAME_MODE_PLAYING && (!tape.pausing || + tape.single_step)) { /* when playing, display a special mouse pointer inside the playfield */ -- 2.34.1