Skip to content

Commit

Permalink
Allow grabing mouse by locking its position
Browse files Browse the repository at this point in the history
  • Loading branch information
pmandin committed Sep 12, 2006
1 parent c8f5db9 commit ae7f620
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/video/gem/SDL_gemmouse.c
Expand Up @@ -176,10 +176,12 @@ void GEM_CheckMouseMode(_THIS)

/* If the mouse is hidden and input is grabbed, we use relative mode */
if ( (!(SDL_cursorstate & CURSOR_VISIBLE)) &&
/*(this->input_grab != SDL_GRAB_OFF) && */ /* Damn GEM can not grab */
(this->input_grab != SDL_GRAB_OFF) &&
(SDL_GetAppState() & SDL_APPACTIVE) ) {
SDL_AtariXbios_LockMousePosition(SDL_TRUE);
GEM_mouse_relative = SDL_TRUE;
} else {
SDL_AtariXbios_LockMousePosition(SDL_FALSE);
GEM_mouse_relative = SDL_FALSE;
graf_mouse(M_ON, NULL);
}
Expand Down
6 changes: 5 additions & 1 deletion src/video/gem/SDL_gemwm.c
Expand Up @@ -108,5 +108,9 @@ int GEM_IconifyWindow(_THIS)

SDL_GrabMode GEM_GrabInput(_THIS, SDL_GrabMode mode)
{
return SDL_GRAB_OFF;
if (this->screen == NULL) {
return SDL_GRAB_OFF;
}

return mode;
}

0 comments on commit ae7f620

Please sign in to comment.