comparison src/video/photon/SDL_ph_mouse.c @ 1658:e49147870aac SDL-1.3

glSDL support
author Sam Lantinga <slouken@libsdl.org>
date Mon, 01 May 2006 06:58:33 +0000
parents d910939febfa
children 782fd950bd46
comparison
equal deleted inserted replaced
1657:5b0805ceb50f 1658:e49147870aac
124 { 124 {
125 return (0); 125 return (0);
126 } 126 }
127 127
128 /* looks like photon can't draw mouse cursor in direct mode */ 128 /* looks like photon can't draw mouse cursor in direct mode */
129 if ((this->screen->flags & SDL_FULLSCREEN) == SDL_FULLSCREEN) 129 if (this->screen->flags & SDL_FULLSCREEN)
130 { 130 {
131 /* disable the fake mouse in the fullscreen OpenGL mode */ 131 /* disable the fake mouse in the fullscreen OpenGL mode */
132 if ((this->screen->flags & SDL_OPENGL) == SDL_OPENGL) 132 if (this->screen->flags & SDL_INTERNALOPENGL)
133 { 133 {
134 cursor=NULL; 134 cursor=NULL;
135 } 135 }
136 else 136 else
137 { 137 {