Small fix in video/video.c - moved a variable to the top.

This commit is contained in:
OBattler
2018-10-28 08:28:08 +01:00
parent 3d9f770603
commit 44840a2f79

View File

@@ -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, <http://pcem-emulator.co.uk/>
* Miran Grca, <mgrca8@gmail.com>
@@ -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)
{