Mercurial > sdl-ios-xcode
diff src/video/xbios/SDL_xbios_sb3.c @ 2188:0e751c1f83f5
Disable video extensions atm
author | Patrice Mandin <patmandin@gmail.com> |
---|---|
date | Fri, 13 Jul 2007 22:52:53 +0000 |
parents | c121d94672cb |
children | 99210400e8b9 |
line wrap: on
line diff
--- a/src/video/xbios/SDL_xbios_sb3.c Fri Jul 13 22:51:42 2007 +0000 +++ b/src/video/xbios/SDL_xbios_sb3.c Fri Jul 13 22:52:53 2007 +0000 @@ -50,6 +50,7 @@ int SDL_XBIOS_SB3Usable(scpn_cookie_t * cookie_scpn) { +#if 0 scpn_screeninfo_t *scrinfo; int bpp; @@ -60,6 +61,7 @@ if ((bpp == 8) || (bpp == 16)) { return 1; } +#endif return 0; } @@ -67,6 +69,7 @@ void SDL_XBIOS_SB3Init(_THIS, scpn_cookie_t * cookie_scpn) { +#if 0 scpn_screeninfo_t *scrinfo; /* SB3 prevent changing video modes, we can only use current one */ @@ -84,6 +87,7 @@ scrinfo->virtual_width, scrinfo->virtual_height, 1 << (SDL_XBIOS_scpn_planes_device[scrinfo->device]), SDL_FALSE); +#endif } /* vi: set ts=4 sw=4 expandtab: */