From 2810f82296f374aa07771438ce13f11bcd07b509 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 19 Nov 2015 12:23:49 +0100 Subject: [PATCH] x11_common.c - reorder variables --- gfx/common/x11_common.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/gfx/common/x11_common.c b/gfx/common/x11_common.c index 3fabdd01c8..e8499f14fa 100644 --- a/gfx/common/x11_common.c +++ b/gfx/common/x11_common.c @@ -27,17 +27,19 @@ #include "../../general.h" #include "../video_monitor.h" +Colormap g_x11_cmap; +Window g_x11_win; +Display *g_x11_dpy; + static Atom XA_NET_WM_STATE; static Atom XA_NET_WM_STATE_FULLSCREEN; static Atom XA_NET_MOVERESIZE_WINDOW; -Colormap g_x11_cmap; + static Atom g_x11_quit_atom; static volatile sig_atomic_t g_x11_quit; static bool g_x11_has_focus; -Window g_x11_win; static XIM g_x11_xim; static XIC g_x11_xic; -Display *g_x11_dpy; static bool g_x11_true_full; #define XA_INIT(x) XA##x = XInternAtom(dpy, #x, False)