From 951f7f5258e1913285753bdb956f17b92994a96a Mon Sep 17 00:00:00 2001 From: tomcw Date: Sun, 28 Jun 2020 10:25:59 +0100 Subject: [PATCH] Minor: added missing static keywords --- source/Debugger/Debugger_Display.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/Debugger/Debugger_Display.cpp b/source/Debugger/Debugger_Display.cpp index 0866528d..d7b64fc6 100644 --- a/source/Debugger/Debugger_Display.cpp +++ b/source/Debugger/Debugger_Display.cpp @@ -83,8 +83,8 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA static LPBITMAPINFO g_pDebuggerMemFramebufferinfo = NULL; static bgra_t* g_pDebuggerMemFramebits = NULL; - HDC g_hConsoleFontDC = NULL; - HBITMAP g_hConsoleFontBitmap = NULL; + static HDC g_hConsoleFontDC = NULL; + static HBITMAP g_hConsoleFontBitmap = NULL; static LPBITMAPINFO g_hConsoleFontFramebufferinfo = NULL; static bgra_t* g_hConsoleFontFramebits;