diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-03-27 15:29:46 +0100 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-03-27 15:29:46 +0100 |
commit | aa6f1c46e78864d9900cdf8afb8bacb8c4ce4651 (patch) | |
tree | 595063263f824a8e1022cea9b951352191c6282e /src/gui/button.cpp | |
parent | 3efa949fca06f9a1cad04ff7da8107096ed55044 (diff) | |
download | mana-aa6f1c46e78864d9900cdf8afb8bacb8c4ce4651.tar.gz mana-aa6f1c46e78864d9900cdf8afb8bacb8c4ce4651.tar.bz2 mana-aa6f1c46e78864d9900cdf8afb8bacb8c4ce4651.tar.xz mana-aa6f1c46e78864d9900cdf8afb8bacb8c4ce4651.zip |
Removed all the static initializations of mAlpha
They happened before the configuration was initialized, so that didn't
make any sense. It never showed up as a problem since the value is
constantly set in the draw methods anyway.
Diffstat (limited to 'src/gui/button.cpp')
-rw-r--r-- | src/gui/button.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/button.cpp b/src/gui/button.cpp index 28b7c0d7..c7070667 100644 --- a/src/gui/button.cpp +++ b/src/gui/button.cpp @@ -34,7 +34,7 @@ #include "../utils/dtor.h" int Button::mInstances = 0; -float Button::mAlpha = config.getValue("guialpha", 0.8); +float Button::mAlpha = 1.0; enum{ BUTTON_STANDARD, // 0 |