mirror of
https://github.com/libretro/RetroArch
synced 2025-01-27 03:35:22 +00:00
(Win32) Make g_pos_x/g_pos_y static
This commit is contained in:
parent
92f68fd614
commit
9961907d2c
@ -44,8 +44,8 @@ bool dinput_handle_message(void *dinput, UINT message, WPARAM wParam, LPARAM lPa
|
||||
|
||||
unsigned g_resize_width;
|
||||
unsigned g_resize_height;
|
||||
unsigned g_pos_x = CW_USEDEFAULT;
|
||||
unsigned g_pos_y = CW_USEDEFAULT;
|
||||
static unsigned g_pos_x = CW_USEDEFAULT;
|
||||
static unsigned g_pos_y = CW_USEDEFAULT;
|
||||
bool g_resized;
|
||||
bool g_quit;
|
||||
HWND g_hwnd;
|
||||
|
@ -33,8 +33,6 @@
|
||||
|
||||
extern unsigned g_resize_width;
|
||||
extern unsigned g_resize_height;
|
||||
extern unsigned g_pos_x;
|
||||
extern unsigned g_pos_y;
|
||||
extern bool g_resized;
|
||||
extern bool g_quit;
|
||||
extern HWND g_hwnd;
|
||||
|
Loading…
x
Reference in New Issue
Block a user