diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-10-20 18:11:57 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-10-20 18:11:57 +0300 |
commit | 9cf563fa7f4059bfddd82efdaa89df2ed07a6d7c (patch) | |
tree | 172ff032c6d811f6f903b31413840691bd43254e /src/gui/windows/charcreatedialog.cpp | |
parent | 13abfc42956e176c9779ee41fddc95a4b85cb389 (diff) | |
download | plus-9cf563fa7f4059bfddd82efdaa89df2ed07a6d7c.tar.gz plus-9cf563fa7f4059bfddd82efdaa89df2ed07a6d7c.tar.bz2 plus-9cf563fa7f4059bfddd82efdaa89df2ed07a6d7c.tar.xz plus-9cf563fa7f4059bfddd82efdaa89df2ed07a6d7c.zip |
Remove setMap from being constructor.
Diffstat (limited to 'src/gui/windows/charcreatedialog.cpp')
-rw-r--r-- | src/gui/windows/charcreatedialog.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gui/windows/charcreatedialog.cpp b/src/gui/windows/charcreatedialog.cpp index 5164c89b6..d23a40f7a 100644 --- a/src/gui/windows/charcreatedialog.cpp +++ b/src/gui/windows/charcreatedialog.cpp @@ -121,8 +121,7 @@ CharCreateDialog::CharCreateDialog(CharSelectDialog *const parent, mLook(0), mMinLook(CharDB::getMinLook()), mMaxLook(CharDB::getMaxLook()), - mPlayer(new Being(0, ActorSprite::PLAYER, static_cast<uint16_t>(mRace), - nullptr)), + mPlayer(new Being(0, ActorSprite::PLAYER, static_cast<uint16_t>(mRace))), mPlayerBox(new PlayerBox(mPlayer, "charcreate_playerbox.xml", "charcreate_selectedplayerbox.xml")), mHairStyle(0), |