about summary refs log tree commit diff stats
path: root/prototypes/browse/14.mu
diff options
context:
space:
mode:
Diffstat (limited to 'prototypes/browse/14.mu')
-rw-r--r--prototypes/browse/14.mu6
1 files changed, 3 insertions, 3 deletions
diff --git a/prototypes/browse/14.mu b/prototypes/browse/14.mu
index 29a92489..6168b69c 100644
--- a/prototypes/browse/14.mu
+++ b/prototypes/browse/14.mu
@@ -31,14 +31,14 @@ fn render in: (addr buffered-file), nrows: int, ncols: int {
   # hardcoded parameters:
   #   top-margin
   #   page-margin
-  #   text-width
+  #   page-width
   var _r: render-state
   var r/edi: (addr render-state) <- address _r
   var toprow/eax: int <- copy 2  # top-margin
   var botrow/ecx: int <- copy nrows
   var leftcol/edx: int <- copy 5  # page-margin
   var rightcol/ebx: int <- copy leftcol
-  rightcol <- add 0x40  # text-width = 64 characters
+  rightcol <- add 0x40  # page-width = 64 characters
   start-color 0xec, 7  # 236 = darkish gray
   {
     compare rightcol, ncols
@@ -47,7 +47,7 @@ fn render in: (addr buffered-file), nrows: int, ncols: int {
     leftcol <- copy rightcol
     leftcol <- add 5  # page-margin
     rightcol <- copy leftcol
-    rightcol <- add 0x40  # text-width
+    rightcol <- add 0x40  # page-width
     loop
   }
 }