From 44840a2f79e9aa74e7f9b866009b5cd2b2444bf6 Mon Sep 17 00:00:00 2001 From: OBattler Date: Sun, 28 Oct 2018 08:28:08 +0100 Subject: [PATCH] Small fix in video/video.c - moved a variable to the top. --- src/video/video.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/video/video.c b/src/video/video.c index 2741958a2..84614122e 100644 --- a/src/video/video.c +++ b/src/video/video.c @@ -40,7 +40,7 @@ * W = 3 bus clocks * L = 4 bus clocks * - * Version: @(#)video.c 1.0.29 2018/10/28 + * Version: @(#)video.c 1.0.30 2018/10/28 * * Authors: Sarah Walker, * Miran Grca, @@ -106,6 +106,7 @@ int invert_display = 0; int video_grayscale = 0; int video_graytype = 0; static int vid_type; +static unsigned int carry = 0; static const video_timings_t *vid_timings; static uint32_t cga_2_table[16]; @@ -353,9 +354,6 @@ uint32_t pixel_to_color(uint8_t *pixels32, uint8_t pos) } -static unsigned int carry = 0; - - void video_blend(int x, int y) {