]> git.jsancho.org Git - lugaru.git/blobdiff - Source/Settings.cpp
Bump details to high level and enable motion blur
[lugaru.git] / Source / Settings.cpp
index e0b4db1a0d9c39e7d7c66b4bf1475d6fc21ca8e5..3283b441d639541797c9e5b82ecfc30ef0076957 100644 (file)
@@ -27,11 +27,11 @@ using namespace Game;
 
 void DefaultSettings()
 {
-    detail = 1;
-    ismotionblur = 0;
+    detail = 2;
+    ismotionblur = 1;
     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;
 }