diff --git a/video/win32_v.c b/video/win32_v.c --- a/video/win32_v.c +++ b/video/win32_v.c @@ -7,6 +7,7 @@ #include "../macros.h" #include "../network.h" #include "../variables.h" +#include "../win32.h" #include "../window.h" #include "win32_v.h" #include @@ -65,17 +66,6 @@ static void UpdatePalette(HDC dc, uint s SetDIBColorTable(dc, start, count, rgb); } -bool MyShowCursor(bool show) -{ - if (_wnd.cursor_visible == show) - return show; - - _wnd.cursor_visible = show; - ShowCursor(show); - - return !show; -} - typedef struct { byte vk_from; byte vk_count;