diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-06-08 18:18:18 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-06-08 18:18:18 +0300 |
commit | e03f294796e1cd8d49d00fd86dc33959948924c7 (patch) | |
tree | aea8504dd7e510c8669cffd18f8c4200f8473470 /src/gui | |
parent | 025e9b12601079e7aeaaaa25225e9dadc376240a (diff) | |
download | plus-e03f294796e1cd8d49d00fd86dc33959948924c7.tar.gz plus-e03f294796e1cd8d49d00fd86dc33959948924c7.tar.bz2 plus-e03f294796e1cd8d49d00fd86dc33959948924c7.tar.xz plus-e03f294796e1cd8d49d00fd86dc33959948924c7.zip |
Remove default value from parameter cards in Being->setSprite.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/windows/charcreatedialog.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gui/windows/charcreatedialog.cpp b/src/gui/windows/charcreatedialog.cpp index f100afee9..72ab6626b 100644 --- a/src/gui/windows/charcreatedialog.cpp +++ b/src/gui/windows/charcreatedialog.cpp @@ -161,7 +161,8 @@ CharCreateDialog::CharCreateDialog(CharSelectDialog *const parent, std::string(), ItemColor_one, IsWeapon_false, - IsTempSprite_false); + IsTempSprite_false, + nullptr); } if (!maxHairColor) @@ -775,7 +776,8 @@ void CharCreateDialog::updateHair() item.getDyeColorsString(fromInt(mHairColor, ItemColor)), ItemColor_one, IsWeapon_false, - IsTempSprite_false); + IsTempSprite_false, + nullptr); } void CharCreateDialog::updateRace() |