We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1d3ec7 commit f6f35fdCopy full SHA for f6f35fd
1 file changed
game/game/movealgo.cpp
@@ -822,8 +822,11 @@ void MoveAlgo::setState(State f) {
822
}
823
824
void MoveAlgo::assertStateChange(State f) {
825
- // assert possible transitions
826
const bool dead = npc.isDead();
+ // release build quirks
827
+ (void)f;
828
+ (void)dead;
829
+ // assert possible transitions
830
switch(flags) {
831
case Run:
832
assert(f!=Falling);
0 commit comments