Skip to content

Commit f6f35fd

Browse files
committed
CI
1 parent b1d3ec7 commit f6f35fd

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

game/game/movealgo.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -822,8 +822,11 @@ void MoveAlgo::setState(State f) {
822822
}
823823

824824
void MoveAlgo::assertStateChange(State f) {
825-
// assert possible transitions
826825
const bool dead = npc.isDead();
826+
// release build quirks
827+
(void)f;
828+
(void)dead;
829+
// assert possible transitions
827830
switch(flags) {
828831
case Run:
829832
assert(f!=Falling);

0 commit comments

Comments
 (0)