about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-05-10 12:55:13 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-05-10 12:55:13 -0700
commitc1b75e9e112f10fac77efc64028c74651fbc563b (patch)
tree6da12f62ed2e40c7d95a31c2d3972b5f2e4d39a9
parent4e0051e5e5605df617c3fb1ed32a2f122c98480e (diff)
downloadmu-c1b75e9e112f10fac77efc64028c74651fbc563b.tar.gz
1335
-rw-r--r--chessboard.mu30
1 files changed, 2 insertions, 28 deletions
diff --git a/chessboard.mu b/chessboard.mu
index 13fd42e4..57df2b6e 100644
--- a/chessboard.mu
+++ b/chessboard.mu
@@ -108,7 +108,7 @@ recipe initial-position [
 ]
 
 scenario printing-the-board [
-  assume-screen 30:literal/width, 24:literal/height
+  assume-screen 30:literal/width, 12:literal/height
   run [
     1:address:array:address:array:character/board <- initial-position
     screen:address <- print-board screen:address, 1:address:array:address:array:character/board
@@ -127,19 +127,6 @@ scenario printing-the-board [
     .    a b c d e f g h           .
     .                              .
     .                              .
-    .                              .
-    .                              .
-    .                              .
-    .                              .
-    .                              .
-    .                              .
-    .                              .
-    .                              .
-    .                              .
-    .                              .
-    .                              .
-    .                              .
-    .                              .
   ]
 ]
 
@@ -514,7 +501,7 @@ recipe make-move [
 ]
 
 scenario making-a-move [
-  assume-screen 30:literal/width, 24:literal/height
+  assume-screen 30:literal/width, 12:literal/height
   run [
     2:address:array:address:array:character/board <- initial-position
     3:address:move <- new move:type
@@ -543,19 +530,6 @@ scenario making-a-move [
     .    a b c d e f g h           .
     .                              .
     .                              .
-    .                              .
-    .                              .
-    .                              .
-    .                              .
-    .                              .
-    .                              .
-    .                              .
-    .                              .
-    .                              .
-    .                              .
-    .                              .
-    .                              .
-    .                              .
   ]
 ]