Skip to content

Commit

Permalink
remove pointless default value
Browse files Browse the repository at this point in the history
  • Loading branch information
Narre committed Jul 31, 2023
1 parent bd693b6 commit 23b4272
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/badguy/dart.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Dart::Dart(const ReaderMapping& reader) :
SoundManager::current()->preload("sounds/stomp.wav");
}

Dart::Dart(const Vector& pos, Direction d, const BadGuy* parent_ = nullptr, const std::string& sprite, Flip flip) :
Dart::Dart(const Vector& pos, Direction d, const BadGuy* parent_, const std::string& sprite, Flip flip) :
BadGuy(pos, d, sprite),
parent(parent_),
sound_source()
Expand Down

0 comments on commit 23b4272

Please sign in to comment.