From 6b7dd245f9c3d003c09b846c38ab7c0ad34da974 Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Tue, 31 Mar 2015 00:47:22 +0200 Subject: [PATCH] fixed slow tape quick-loading due to unneeded tape area update --- src/tape.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tape.c b/src/tape.c index efc8bcb4..bb0f08f8 100644 --- a/src/tape.c +++ b/src/tape.c @@ -289,6 +289,8 @@ static void DrawVideoDisplay_Graphics(unsigned int state, unsigned int value) if (gd_bitmap != NULL) BlitBitmap(gd_bitmap, drawto, gd_x, gd_y, gfx->width, gfx->height, VX + pos->x, VY + pos->y); + + redraw_mask |= REDRAW_DOOR_2; } } } @@ -431,8 +433,6 @@ void DrawVideoDisplay(unsigned int state, unsigned int value) { DrawVideoDisplay_Graphics(state, value); DrawVideoDisplay_DateTime(state, value); - - redraw_mask |= REDRAW_DOOR_2; } void DrawCompleteVideoDisplay() -- 2.34.1