(svn r2725) Move MyShowCursor() back into win32.c, it fits better there

This commit is contained in:
tron
2005-07-27 19:22:38 +00:00
parent a1557fa270
commit 9aa4893e66
4 changed files with 14 additions and 13 deletions

View File

@@ -7,6 +7,7 @@
#include "../macros.h"
#include "../network.h"
#include "../variables.h"
#include "../win32.h"
#include "../window.h"
#include "win32_v.h"
#include <windows.h>
@@ -65,17 +66,6 @@ static void UpdatePalette(HDC dc, uint start, uint count)
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;