Updated Windows CE/PocketPC support...adds GAPI driver, landscape mode,
updated project files, VS2005 support, VGA mode, more device support, etc, etc, etc. Fixes Bugzilla #47 and #28. --ryan. --HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401254
This commit is contained in:
parent
e691b06188
commit
f2d9ddec98
19 changed files with 1457 additions and 10 deletions
|
@ -251,6 +251,7 @@ void WIN_UpdateMouse(_THIS)
|
|||
/* Check to see if we need to enter or leave mouse relative mode */
|
||||
void WIN_CheckMouseMode(_THIS)
|
||||
{
|
||||
#ifndef _WIN32_WCE
|
||||
/* If the mouse is hidden and input is grabbed, we use relative mode */
|
||||
if ( !(SDL_cursorstate & CURSOR_VISIBLE) &&
|
||||
(this->input_grab != SDL_GRAB_OFF) ) {
|
||||
|
@ -258,4 +259,7 @@ void WIN_CheckMouseMode(_THIS)
|
|||
} else {
|
||||
mouse_relative = 0;
|
||||
}
|
||||
#else
|
||||
mouse_relative = 0;
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue