about summary refs log tree commit diff stats
path: root/prototypes/browse/21/screen-position-state.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/21/screen-position-state.mu
parente8d793e9552d56e6389d53b8c0b3c27d53f2b82c (diff)
downloadmu-166668a189ab2d61e5015a4cde83eb1213fd08e7.tar.gz
6474
Diffstat (limited to 'prototypes/browse/21/screen-position-state.mu')
-rw-r--r--prototypes/browse/21/screen-position-state.mu6
1 files changed, 3 insertions, 3 deletions
diff --git a/prototypes/browse/21/screen-position-state.mu b/prototypes/browse/21/screen-position-state.mu
index 8864cbe8..bb0adc97 100644
--- a/prototypes/browse/21/screen-position-state.mu
+++ b/prototypes/browse/21/screen-position-state.mu
@@ -13,7 +13,7 @@ fn init-screen-position-state _self: (addr screen-position-state) {
   # hardcoded parameters:
   #   top-margin
   #   page-margin
-  #   text-width
+  #   page-width
   var self/esi: (addr screen-position-state) <- copy _self
   var nrows/eax: int <- copy 0
   var ncols/ecx: int <- copy 0
@@ -34,9 +34,9 @@ fn init-screen-position-state _self: (addr screen-position-state) {
   # self->leftcol = page-margin
   dest <- get self, leftcol
   copy-to *dest, 5  # left-margin
-  # self->rightcol = self->leftcol + text-width
+  # self->rightcol = self->leftcol + page-width
   dest <- get self, rightcol
-  copy-to *dest, 0x45  # left-margin + text-width
+  copy-to *dest, 0x45  # left-margin + page-width
   #
   start-drawing self
 }