diff options
author | Ira Rice <irarice@gmail.com> | 2009-02-11 18:36:35 -0700 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-02-11 18:36:35 -0700 |
commit | f72ff67c54a3d49ffcfa83b6a06db4176f37093b (patch) | |
tree | 8b6f0f67d04150c986cd8537a83ecd53bbfe75a9 /src/gui | |
parent | 70aff3a9f745e23fcfa11db92563d0ed17449c32 (diff) | |
download | mana-f72ff67c54a3d49ffcfa83b6a06db4176f37093b.tar.gz mana-f72ff67c54a3d49ffcfa83b6a06db4176f37093b.tar.bz2 mana-f72ff67c54a3d49ffcfa83b6a06db4176f37093b.tar.xz mana-f72ff67c54a3d49ffcfa83b6a06db4176f37093b.zip |
Adjusted a few files for release.
Signed-off-by: Ira Rice <irarice@gmail.com>
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/setup_video.cpp | 4 | ||||
-rw-r--r-- | src/gui/table.cpp | 2 | ||||
-rw-r--r-- | src/gui/table.h | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/setup_video.cpp b/src/gui/setup_video.cpp index bf5682e6..e1a148d8 100644 --- a/src/gui/setup_video.cpp +++ b/src/gui/setup_video.cpp @@ -112,7 +112,7 @@ Setup_Video::Setup_Video(): mNameEnabled(config.getValue("showownname", false)), mOpacity(config.getValue("guialpha", 0.8)), mFps((int) config.getValue("fpslimit", 0)), - mSpeechMode(config.getValue("speech", 3)), + mSpeechMode((int) config.getValue("speech", 3)), mModeListModel(new ModeListModel), mModeList(new ListBox(mModeListModel)), mFsCheckBox(new CheckBox(_("Full screen"), mFullScreenEnabled)), @@ -389,7 +389,7 @@ void Setup_Video::apply() mCustomCursorEnabled = config.getValue("customcursor", true); mParticleEffectsEnabled = config.getValue("particleeffects", true); mNameEnabled = config.getValue("showownname", false); - mSpeechMode = config.getValue("speech", 3); + mSpeechMode = (int) config.getValue("speech", 3); mOpacity = config.getValue("guialpha", 0.8); mOverlayDetail = (int) config.getValue("OverlayDetail", 2); mOpenGLEnabled = config.getValue("opengl", false); diff --git a/src/gui/table.cpp b/src/gui/table.cpp index 1793948b..8acbc4f4 100644 --- a/src/gui/table.cpp +++ b/src/gui/table.cpp @@ -1,6 +1,6 @@ /* * Aethyra - * Copyright (C) 2008 Douglas Boffey <dougaboffey@netscape.net> + * Copyright (C) 2008 The Mana World Development Team * * This file is part of Aethyra derived from original code * from Guichan. diff --git a/src/gui/table.h b/src/gui/table.h index c84272a3..a508d0e4 100644 --- a/src/gui/table.h +++ b/src/gui/table.h @@ -1,6 +1,6 @@ /* * Aethyra - * Copyright (C) 2008 Douglas Boffey <dougaboffey@netscape.net> + * Copyright (C) 2008 The Mana World Development Team * * This file is part of Aethyra derived from original code * from Guichan. |