diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2008-12-07 13:48:56 +0100 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2008-12-07 19:45:37 -0700 |
commit | a3859a9078b07865597332ba2d2f274a635b1180 (patch) | |
tree | 07a679c17fc61c706c574261126ce6f8e917ea14 /src/main.cpp | |
parent | 3aca1f5b4f11a3bb90ecacfb43346a1e2832397d (diff) | |
download | mana-a3859a9078b07865597332ba2d2f274a635b1180.tar.gz mana-a3859a9078b07865597332ba2d2f274a635b1180.tar.bz2 mana-a3859a9078b07865597332ba2d2f274a635b1180.tar.xz mana-a3859a9078b07865597332ba2d2f274a635b1180.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 4049aa78..e9ec365f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -319,7 +319,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://www.aethyra.org/updates"); config.setValue("customcursor", 1); config.setValue("ChatLogLength", 128); |