summaryrefslogtreecommitdiff
path: root/src/setup/display.c
diff options
context:
space:
mode:
authorSimon Howard2014-04-12 17:14:37 -0400
committerSimon Howard2014-04-12 17:14:37 -0400
commitd70c830b4d089e749ff5aa84a3d479be7911995a (patch)
tree7b1bd1a21bf3dc425063097d367e842d8caeaf50 /src/setup/display.c
parent67fae2be49cb9203de5b952ab8b17a37db800c15 (diff)
downloadchocolate-doom-d70c830b4d089e749ff5aa84a3d479be7911995a.tar.gz
chocolate-doom-d70c830b4d089e749ff5aa84a3d479be7911995a.tar.bz2
chocolate-doom-d70c830b4d089e749ff5aa84a3d479be7911995a.zip
video: Change default for screen_bpp to 0.
Some machines don't work well with 8-bit screen depths any more. It's better to default to just using the machine's native color depth instead. Change the default to 0 (for SDL_SetVideoMode this means "use native color depth"), auto-adjust to native color depth on startup if screen_bpp=0 (so that debug messages at least make sense) and document for the config file value that a value of zero means "use native".
Diffstat (limited to 'src/setup/display.c')
-rw-r--r--src/setup/display.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/setup/display.c b/src/setup/display.c
index da440fce..4e2231d7 100644
--- a/src/setup/display.c
+++ b/src/setup/display.c
@@ -106,7 +106,7 @@ static int aspect_ratio_correct = 1;
static int fullscreen = 1;
static int screen_width = 320;
static int screen_height = 200;
-static int screen_bpp = 8;
+static int screen_bpp = 0;
static int startup_delay = 1000;
static int usegamma = 0;