From: Holger Schemel Date: Tue, 31 May 2016 10:22:13 +0000 (+0200) Subject: fixed small tape recorder state display bug X-Git-Tag: 4.0.0.0-rc3~41 X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=commitdiff_plain;h=dfe9bd5e0191bc1011dd09b32103a808f41b4190 fixed small tape recorder state display bug --- diff --git a/src/tape.c b/src/tape.c index 0c389a6b..50838ae6 100644 --- a/src/tape.c +++ b/src/tape.c @@ -754,13 +754,16 @@ void TapeTogglePause(boolean toggle_manual) { TapeDeactivateDisplayOff(game_status == GAME_MODE_PLAYING); } - else + else if (tape.deactivate_display) { - if (tape.deactivate_display) - TapeDeactivateDisplayOn(); + TapeDeactivateDisplayOn(); DrawVideoDisplaySymbol(VIDEO_STATE_WARP_ON); } + else + { + DrawVideoDisplaySymbol(VIDEO_STATE_WARP2_ON); + } if (tape.quick_resume) {