about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-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           .
     .                              .
     .                              .
-    .                              .
-    .                              .
-    .                              .
-    .                              .
-    .                              .
-    .                              .
-    .                              .
-    .                              .
-    .                              .
-    .                              .
-    .                              .
-    .                              .
-    .                              .
   ]
 ]