about summary refs log tree commit diff stats
path: root/prototypes/browse/9-bold.mu
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-06-05 15:53:48 -0700
committerKartik Agaram <vc@akkartik.com>2020-06-05 15:53:48 -0700
commit166668a189ab2d61e5015a4cde83eb1213fd08e7 (patch)
treed61440330d58ad8a5a19c35f7acfd0400e4fb19f /prototypes/browse/9-bold.mu
parente8d793e9552d56e6389d53b8c0b3c27d53f2b82c (diff)
downloadmu-166668a189ab2d61e5015a4cde83eb1213fd08e7.tar.gz
6474
Diffstat (limited to 'prototypes/browse/9-bold.mu')
-rw-r--r--prototypes/browse/9-bold.mu6
1 files changed, 3 insertions, 3 deletions
diff --git a/prototypes/browse/9-bold.mu b/prototypes/browse/9-bold.mu
index 5236365f..a0dd6676 100644
--- a/prototypes/browse/9-bold.mu
+++ b/prototypes/browse/9-bold.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
   }
 }