shithub: choc

Download patch

ref: d5453a38b44e47bbceb98fae6467f3810ab9030a
parent: 05b7e25ca466172d071d17e9f3f665f992342431
author: Jonathan Dowland <jon+github@alcopop.org>
date: Mon Apr 11 03:28:01 EDT 2016

remove 256x200 resolution option

This resolution is a scale-down from Doom's native resolution. The vast
majority of chocolate-doom players will not want to use it. Balance out
the resolution table by adding 1920x1440 at the end, instead.

Note it will still be possible for people to use 256x200 if they really
want to: you can supply any width or height in chocolate-doom.cfg.

--- a/src/setup/display.c
+++ b/src/setup/display.c
@@ -53,7 +53,6 @@
 
 static screen_mode_t screen_modes_scaled[] = 
 {
-    { 256,  200 },
     { 320,  240 },
     { 512,  400 },
     { 640,  480 },
@@ -62,6 +61,7 @@
     { 1024, 800 },
     { 1280, 960 },
     { 1600, 1200 },
+    { 1920, 1440 },
     { 0, 0},
 };