Skip to content

Commit 2f517c8

Browse files
lets see if this fixes bootvid in msvc
1 parent c224875 commit 2f517c8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

drivers/base/bootvid/framebuf/bootvid.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222
#define FB_OFFSET(x, y) (((PanV + (y)) * FrameBufferPixelsPerScanLine + PanH + (x)) * BytesPerPixel)
2323

2424
static ULONG_PTR FrameBufferStart = 0;
25-
static ULONG FrameBufferWidth, FrameBufferHeight, FrameBufferPixelsPerScanLine, PanH, PanV;
25+
static ULONG FrameBufferWidth, FrameBufferHeight, FrameBufferPixelsPerScanLine;
26+
static LONG PanH, PanV;
2627
static UCHAR BytesPerPixel;
2728
static RGBQUAD CachedPalette[BV_MAX_COLORS];
2829
static PUCHAR BackBuffer = NULL;

0 commit comments

Comments
 (0)