diff --git a/src/evaluate.cpp b/src/evaluate.cpp
index 29d71ea9..34a87771 100644
--- a/src/evaluate.cpp
+++ b/src/evaluate.cpp
@@ -17,10 +17,10 @@
along with this program. If not, see .
*/
+#include
#include
#include
#include
-#include
#include "bitcount.h"
#include "evaluate.h"
@@ -790,7 +790,8 @@ namespace {
// Stealmate detection
Color stm = pos.side_to_move();
if ( (ei.attackedBy[stm][ALL_PIECES] == ei.attackedBy[stm][KING])
- && (!(ei.attackedBy[stm][KING] & ~ei.attackedBy[~stm][ALL_PIECES])))
+ && (!(ei.attackedBy[stm][KING] & ~ei.attackedBy[~stm][ALL_PIECES]))
+ && !MoveList(pos).size())
sf = SCALE_FACTOR_DRAW;
// Interpolate between a middlegame and a (scaled by 'sf') endgame score