*** empty log message ***

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%4012
This commit is contained in:
Sam Lantinga 2001-04-28 18:57:18 +00:00
parent f772d5c196
commit 0d41d5350e
2 changed files with 13 additions and 5 deletions

View file

@ -1351,8 +1351,10 @@ int SDL_GL_GetAttribute(SDL_GLattr attr, int* value)
if ( video->GL_GetAttribute ) { if ( video->GL_GetAttribute ) {
retval = this->GL_GetAttribute(this, attr, value); retval = this->GL_GetAttribute(this, attr, value);
} else {
*value = 0;
SDL_SetError("GL_GetAttribute not supported");
} }
return retval; return retval;
} }
@ -1680,10 +1682,10 @@ SDL_GrabMode SDL_WM_GrabInput(SDL_GrabMode mode)
{ {
SDL_VideoDevice *video = current_video; SDL_VideoDevice *video = current_video;
/* If the video isn't initialized yet, we can't do anything */ /* If the video isn't initialized yet, we can't do anything */
if ( ! video ) { if ( ! video ) {
return SDL_GRAB_OFF; return SDL_GRAB_OFF;
} }
/* Return the current mode on query */ /* Return the current mode on query */
if ( mode == SDL_GRAB_QUERY ) { if ( mode == SDL_GRAB_QUERY ) {

View file

@ -0,0 +1,6 @@
Makefile.in
Makefile
.libs
*.o
*.lo
*.la