(svn r26522) -Add: A config-file-only setting to disable usage of 8bpp video modes.
-Remove: [win32] fullscreen_bpp setting, which is replaced by above setting. -Change: Disable usage of 8bpp blitters and video modes by default. Many modern OS and hardware cause issues with those.
This commit is contained in:
@@ -317,7 +317,7 @@ bool VideoDriver_SDL::CreateMainSurface(uint w, uint h)
|
||||
* (which we can't force in 8bpp on 8bpp mode,
|
||||
* unfortunately).
|
||||
*/
|
||||
want_hwpalette = (bpp == 8 && _fullscreen);
|
||||
want_hwpalette = bpp == 8 && _fullscreen && _support8bpp == S8BPP_HARDWARE;
|
||||
} else {
|
||||
/* User specified a value manually */
|
||||
want_hwpalette = _use_hwpalette;
|
||||
|
Reference in New Issue
Block a user