From bf842db7d70294627a8bec8a08f66550f39e4ca7 Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Fri, 24 Mar 2017 17:49:39 +0100 Subject: [PATCH] fixed bug with snapshot buttons not restored when tape is stopped when paused --- src/tape.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/tape.c b/src/tape.c index 2c0661a0..abec7013 100644 --- a/src/tape.c +++ b/src/tape.c @@ -914,6 +914,9 @@ byte *TapePlayAction() void TapeStop() { + if (tape.pausing) + TapeTogglePause(TAPE_TOGGLE_MANUAL); + TapeStopRecording(); TapeStopPlaying(); -- 2.34.1