From: Holger Schemel Date: Tue, 31 May 2016 08:51:21 +0000 (+0200) Subject: fixed small bug with wrong video state definition X-Git-Tag: 4.0.0.0-rc3~45 X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=commitdiff_plain;h=f14f53f27cfe4666e2cdb79899896b91eec80a51 fixed small bug with wrong video state definition --- diff --git a/src/tape.h b/src/tape.h index e77cd86c..34f17889 100644 --- a/src/tape.h +++ b/src/tape.h @@ -65,7 +65,7 @@ #define VIDEO_STATE_WARP (VIDEO_STATE_WARP_OFF | VIDEO_STATE_WARP_ON) #define VIDEO_STATE_WARP2_OFF (1 << 18) #define VIDEO_STATE_WARP2_ON (1 << 19) -#define VIDEO_STATE_WARP2 (VIDEO_STATE_WARP_OFF | VIDEO_STATE_WARP_ON) +#define VIDEO_STATE_WARP2 (VIDEO_STATE_WARP2_OFF | VIDEO_STATE_WARP2_ON) #define VIDEO_STATE_1STEP_OFF (1 << 20) #define VIDEO_STATE_1STEP_ON (1 << 21) #define VIDEO_STATE_1STEP (VIDEO_STATE_1STEP_OFF | VIDEO_STATE_1STEP_ON)