From 19bc627960bdbec5e180e466b5956d3e1bb1a2a1 Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Thu, 2 Jun 2016 08:23:52 +0200 Subject: [PATCH] cleanup of tape recorder display activation/deactivation --- src/tape.c | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/src/tape.c b/src/tape.c index d6c538d9..24adbca1 100644 --- a/src/tape.c +++ b/src/tape.c @@ -675,22 +675,12 @@ void TapeTogglePause(boolean toggle_manual) DrawVideoDisplayPlayState(); - if (tape.warp_forward) + if (tape.deactivate_display) { if (tape.pausing) - { TapeDeactivateDisplayOff(game_status == GAME_MODE_PLAYING); - } - else if (tape.deactivate_display) - { - TapeDeactivateDisplayOn(); - - DrawVideoDisplaySymbol(VIDEO_STATE_WARP_ON); - } else - { - DrawVideoDisplaySymbol(VIDEO_STATE_WARP2_ON); - } + TapeDeactivateDisplayOn(); } if (tape.quick_resume) -- 2.34.1