Turn g_resized into static variable

This commit is contained in:
twinaphex 2015-11-12 02:57:56 +01:00
parent 9961907d2c
commit d2006c43c1
2 changed files with 1 additions and 2 deletions

View File

@ -46,7 +46,7 @@ unsigned g_resize_width;
unsigned g_resize_height;
static unsigned g_pos_x = CW_USEDEFAULT;
static unsigned g_pos_y = CW_USEDEFAULT;
bool g_resized;
static bool g_resized;
bool g_quit;
HWND g_hwnd;

View File

@ -33,7 +33,6 @@
extern unsigned g_resize_width;
extern unsigned g_resize_height;
extern bool g_resized;
extern bool g_quit;
extern HWND g_hwnd;