Mercurial > sdl-ios-xcode
changeset 11:7b94b6379341
*** empty log message ***
author | Sam Lantinga <slouken@lokigames.com> |
---|---|
date | Sat, 28 Apr 2001 18:57:18 +0000 |
parents | ee3bb7cd06b5 |
children | 34d956b20f75 |
files | src/video/SDL_video.c src/video/dummy/.cvsignore |
diffstat | 2 files changed, 13 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/src/video/SDL_video.c Sat Apr 28 18:56:58 2001 +0000 +++ b/src/video/SDL_video.c Sat Apr 28 18:57:18 2001 +0000 @@ -1351,8 +1351,10 @@ if ( video->GL_GetAttribute ) { retval = this->GL_GetAttribute(this, attr, value); + } else { + *value = 0; + SDL_SetError("GL_GetAttribute not supported"); } - return retval; } @@ -1680,10 +1682,10 @@ { SDL_VideoDevice *video = current_video; - /* If the video isn't initialized yet, we can't do anything */ - if ( ! video ) { - return SDL_GRAB_OFF; - } + /* If the video isn't initialized yet, we can't do anything */ + if ( ! video ) { + return SDL_GRAB_OFF; + } /* Return the current mode on query */ if ( mode == SDL_GRAB_QUERY ) {