From 7ec5c09696c47d605721e994e2d587b07bd1835b Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Sat, 15 Jan 2022 10:10:47 +1100 Subject: [PATCH] fix linux build not compiling with missing line --- src/Window_X11.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Window_X11.c b/src/Window_X11.c index f9bed5796..00b85c838 100644 --- a/src/Window_X11.c +++ b/src/Window_X11.c @@ -970,6 +970,7 @@ static GC fb_gc; static XImage* fb_image; static struct Bitmap fb_bmp; static void* fb_data; +static int fb_fast; void Window_AllocFramebuffer(struct Bitmap* bmp) { if (!fb_gc) fb_gc = XCreateGC(win_display, win_handle, 0, NULL);