aboutsummaryrefslogtreecommitdiff
path: root/queen/logic.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'queen/logic.cpp')
-rw-r--r--queen/logic.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/queen/logic.cpp b/queen/logic.cpp
index 1f8ab6108b..7b36fec1bf 100644
--- a/queen/logic.cpp
+++ b/queen/logic.cpp
@@ -2637,9 +2637,8 @@ bool Logic::executeASM_Game(uint16 sm) {
void Logic::executeSpecialMove(uint16 sm) {
debug(6, "Special move: %d", sm);
- if (sm)
- if (!(this->*_executeASM)(sm))
- warning("unhandled / invalid special move : %d", sm);
+ if (!(this->*_executeASM)(sm))
+ warning("unhandled / invalid special move : %d", sm);
}