Mercurial > sdl-ios-xcode
comparison src/video/gem/SDL_gemvideo.c @ 593:0136d21b7764
Date: Fri, 31 Jan 2003 15:17:30 +0100
From: Patrice Mandin
Subject: [SDL] Small patches for SDL
- One for SDL, which removes check for SDL_VIDEODRIVER in the Atari video
drivers. It is unnecessary 'cause it is done in SDL_video.c
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 04 Feb 2003 21:01:03 +0000 |
parents | 0ce5a68278fd |
children | 028e03e273c8 |
comparison
equal
deleted
inserted
replaced
592:1970e458070d | 593:0136d21b7764 |
---|---|
103 | 103 |
104 /* GEM driver bootstrap functions */ | 104 /* GEM driver bootstrap functions */ |
105 | 105 |
106 static int GEM_Available(void) | 106 static int GEM_Available(void) |
107 { | 107 { |
108 const char *envr = getenv("SDL_VIDEODRIVER"); | |
109 | |
110 /* Check if user asked a different video driver */ | |
111 if ((envr) && (strcmp(envr, GEM_VID_DRIVER_NAME)!=0)) { | |
112 return 0; | |
113 } | |
114 | |
115 /* Test if AES available */ | 108 /* Test if AES available */ |
116 if (appl_init() == -1) | 109 if (appl_init() == -1) |
117 return 0; | 110 return 0; |
118 | 111 |
119 appl_exit(); | 112 appl_exit(); |