Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Fixed defaults for 8 bpp visuals
- Loading branch information
Showing
with
3 additions
and
7 deletions.
-
+3
−7
src/video/SDL_video.c
|
@@ -217,13 +217,9 @@ int SDL_VideoInit (const char *driver_name, Uint32 flags) |
|
|
/* Set some very sane GL defaults */ |
|
|
video->gl_config.driver_loaded = 0; |
|
|
video->gl_config.dll_handle = NULL; |
|
|
video->gl_config.red_size = 5; |
|
|
#if 1 /* This seems to work on more video cards, as a default */ |
|
|
video->gl_config.green_size = 5; |
|
|
#else |
|
|
video->gl_config.green_size = 6; |
|
|
#endif |
|
|
video->gl_config.blue_size = 5; |
|
|
video->gl_config.red_size = 3; |
|
|
video->gl_config.green_size = 3; |
|
|
video->gl_config.blue_size = 2; |
|
|
video->gl_config.alpha_size = 0; |
|
|
video->gl_config.buffer_size = 0; |
|
|
video->gl_config.depth_size = 16; |
|
|