Skip to content

Commit

Permalink
actually finishing initialisation order
Browse files Browse the repository at this point in the history
  • Loading branch information
babyccino committed Dec 17, 2017
1 parent 0da8867 commit e636218
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/entities/Player.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ static const std::array<const std::string, 6> PLAYER_FOOT_SOUND = {{
Player::Player(const CreationParams &cp) :
Entity(cp),
m_btGpCallbacks(this),
stepCounter(0),
flying(false),
noclip(false),
frozen(false),
attemptJump(false) {
attemptJump(false),
stepCounter(0) {

setScale(PLAYER_SIZE);

Expand Down

0 comments on commit e636218

Please sign in to comment.