XBoard: split printing of the features line for clarity.
[gnushogi.git] / gnushogi / attacks.c
index 76c52ad..7d2237d 100644 (file)
@@ -4,6 +4,7 @@
  * ----------------------------------------------------------------------
  * Copyright (c) 1993, 1994, 1995 Matthias Mutz
  * Copyright (c) 1999 Michael Vanier and the Free Software Foundation
+ * Copyright (c) 2008, 2013, 2014 Yann Dirson and the Free Software Foundation
  *
  * GNU SHOGI is based on GNU CHESS
  *
@@ -118,6 +119,7 @@ SqAttacked(short square, short side, short *blockable)
     }
     while (u != square);
 
+#ifndef MINISHOGI
     /* try a knight capture (using xside's knight moves) */
 
     ptyp = ptype[side ^ 1][knight];
@@ -141,6 +143,7 @@ SqAttacked(short square, short side, short *blockable)
 #endif
     }
     while (u != square);
+#endif /* MINISHOGI */
 
     *blockable = true;
 
@@ -216,6 +219,7 @@ SqAttacked(short square, short side, short *blockable)
     }
     while (u != square);
 
+#ifndef MINISHOGI
     /* try a lance capture (using xside's lance moves) */
 
     ptyp = ptype[side ^ 1][lance];
@@ -248,6 +252,7 @@ SqAttacked(short square, short side, short *blockable)
         }
     }
     while (u != square);
+#endif /* MINISHOGI */
 
     return false;
 }