Mercurial > sdl-ios-xcode
diff src/video/xbios/SDL_xbios.c @ 1061:5023cde12cbd
Add Falcon Centscreen extension support
author | Patrice Mandin <patmandin@gmail.com> |
---|---|
date | Wed, 18 May 2005 17:02:17 +0000 |
parents | 21d1d05aad39 |
children | fba6b67b4d60 |
line wrap: on
line diff
--- a/src/video/xbios/SDL_xbios.c Mon May 16 08:23:34 2005 +0000 +++ b/src/video/xbios/SDL_xbios.c Wed May 18 17:02:17 2005 +0000 @@ -56,6 +56,7 @@ #include "SDL_atarigl_c.h" #include "SDL_xbios.h" #include "SDL_xbios_blowup.h" +#include "SDL_xbios_centscreen.h" #include "SDL_xbios_sb3.h" #define XBIOS_VID_DRIVER_NAME "xbios" @@ -261,7 +262,7 @@ { int i,j8,j16; xbiosmode_t *current_mode; - unsigned long cookie_blow, cookie_scpn; + unsigned long cookie_blow, cookie_scpn, cookie_cnts; /* Initialize all variables that we clean on shutdown */ memset (SDL_modelist, 0, sizeof(SDL_modelist)); @@ -415,8 +416,9 @@ SDL_XBIOS_BlowupInit(this, (blow_cookie_t *)cookie_blow); } else if (Getcookie(C_SCPN, &cookie_scpn) == C_FOUND) { SDL_XBIOS_SB3Init(this, (scpn_cookie_t *)cookie_scpn); + } else if (Getcookie(C_CNTS, &cookie_cnts) == C_FOUND) { + SDL_XBIOS_CentscreenInit(this); } - break; }