X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=Source%2FSettings.cpp;h=3283b441d639541797c9e5b82ecfc30ef0076957;hb=31801560f92e99939f40ee49d9c279324db044bb;hp=e0b4db1a0d9c39e7d7c66b4bf1475d6fc21ca8e5;hpb=ab5bc544c31256420f735c48723d9e7f7445b8ef;p=lugaru.git diff --git a/Source/Settings.cpp b/Source/Settings.cpp index e0b4db1..3283b44 100644 --- a/Source/Settings.cpp +++ b/Source/Settings.cpp @@ -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; }