diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-07-18 02:51:48 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-07-18 02:51:48 +0300 |
commit | af90f5ef81c95cdec378377c3100a4417e0a1708 (patch) | |
tree | a700421e464e790216580e550decf42956ad5de6 /src/gui | |
parent | f6eb325bae9ae993c59bd0b282aef8707c7409f7 (diff) | |
download | plus-af90f5ef81c95cdec378377c3100a4417e0a1708.tar.gz plus-af90f5ef81c95cdec378377c3100a4417e0a1708.tar.bz2 plus-af90f5ef81c95cdec378377c3100a4417e0a1708.tar.xz plus-af90f5ef81c95cdec378377c3100a4417e0a1708.zip |
Fix some missing initialisations and memory leakss.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/palette.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/gui/palette.h b/src/gui/palette.h index 4a48bd32d..f89b31fca 100644 --- a/src/gui/palette.h +++ b/src/gui/palette.h @@ -155,6 +155,16 @@ class Palette struct ColorElem { + ColorElem() + { + type = 0; + text = ""; + ch = 0; + gradientIndex = 0; + delay = 0; + committedDelay = 0; + } + int type; gcn::Color color; gcn::Color testColor; |