From 67bc41c7d0039d2b9c6f158e5727b9ce66a27bde Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Verschelde?= Date: Sun, 20 Nov 2016 12:23:18 +0100 Subject: [PATCH] Set default resolution to 1024x768 Nowadays it is a saner default than 640x480. Part of #15. --- Source/Settings.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/Settings.cpp b/Source/Settings.cpp index e0b4db1..9930713 100644 --- a/Source/Settings.cpp +++ b/Source/Settings.cpp @@ -30,8 +30,8 @@ void DefaultSettings() detail = 1; ismotionblur = 0; usermousesensitivity = 1; - newscreenwidth = kContextWidth = 640; - newscreenheight = kContextHeight = 480; + newscreenwidth = kContextWidth = 1024; + newscreenheight = kContextHeight = 768; fullscreen = 0; kBitsPerPixel = 32; floatjump = 0; @@ -315,9 +315,9 @@ bool LoadSettings() if (detail < 0) detail = 0; if (screenwidth < 0) - screenwidth = 640; + screenwidth = 1024; if (screenheight < 0) - screenheight = 480; + screenheight = 768; return true; } -- 2.39.2