diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2008-12-07 13:48:56 +0100 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2008-12-07 13:48:56 +0100 |
commit | c56bc78b5f5676784265dff8ed5334884e8dcc39 (patch) | |
tree | 271cfd30f932113ba800c102911bd9cad7f0f8af /src/main.cpp | |
parent | b9cacafcad8b515c1c65aee804a3ce08411b73c9 (diff) | |
download | mana-c56bc78b5f5676784265dff8ed5334884e8dcc39.tar.gz mana-c56bc78b5f5676784265dff8ed5334884e8dcc39.tar.bz2 mana-c56bc78b5f5676784265dff8ed5334884e8dcc39.tar.xz mana-c56bc78b5f5676784265dff8ed5334884e8dcc39.zip |
Tweaked some configuration defaults
Scrolling is now a bit less lazy and the scroll radius is 0. In my
opinion this is a better default.
Framerate limiter is now off by default, since it makes the game appear
a bit choppy. It's basically only useful for laptops anyway, and not too
hard to find.
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index e246b6a9..d99c1985 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -305,7 +305,7 @@ void init_engine(const Options &options) config.setValue("remember", 1); config.setValue("sfxVolume", 100); config.setValue("musicVolume", 60); - config.setValue("fpslimit", 60); + config.setValue("fpslimit", 0); config.setValue("updatehost", "http://updates.themanaworld.org"); config.setValue("customcursor", 1); config.setValue("ChatLogLength", 128); |