From: RĂ©mi Verschelde Date: Sun, 20 Nov 2016 11:23:18 +0000 (+0100) Subject: Set default resolution to 1024x768 X-Git-Url: https://git.jsancho.org/?p=lugaru.git;a=commitdiff_plain;h=67bc41c7d0039d2b9c6f158e5727b9ce66a27bde Set default resolution to 1024x768 Nowadays it is a saner default than 640x480. Part of #15. --- 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; }