- Add a SetCursor() call to I_SetCursor() when the pointer is within the window's client area to

make the pointer change instant instead of waiting until the next mouse event.

SVN r3010 (trunk)
This commit is contained in:
Randy Heit 2010-11-19 04:20:33 +00:00
commit f7fa3c8dbb
3 changed files with 20 additions and 2 deletions

View file

@ -118,7 +118,6 @@ extern int BlockMouseMove;
// PRIVATE DATA DEFINITIONS ------------------------------------------------
static bool NativeMouse;
static EMouseMode MouseMode = MM_None;
static FMouse *(*MouseFactory[])() =
{
@ -130,6 +129,7 @@ static FMouse *(*MouseFactory[])() =
// PUBLIC DATA DEFINITIONS -------------------------------------------------
FMouse *Mouse;
bool NativeMouse;
bool CursorState;