about summary refs log tree commit diff stats
path: root/shell/sandbox.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-04-29 23:38:37 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-04-29 23:38:37 -0700
commit772b7b65853bc3664aac62e04bf3c770eed8a7c8 (patch)
tree556c1c3aa552f554468b0d23749e029937738862 /shell/sandbox.mu
parentca47215a6be611503a7166461b6c54724c99f23e (diff)
downloadmu-772b7b65853bc3664aac62e04bf3c770eed8a7c8.tar.gz
adjust fake screen aspect ratio for verisimilitude
Diffstat (limited to 'shell/sandbox.mu')
-rw-r--r--shell/sandbox.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/sandbox.mu b/shell/sandbox.mu
index ddbe104d..03474926 100644
--- a/shell/sandbox.mu
+++ b/shell/sandbox.mu
@@ -23,7 +23,7 @@ fn initialize-sandbox _self: (addr sandbox), fake-screen-and-keyboard?: boolean
     compare fake-screen-and-keyboard?, 0/false
     break-if-=
     var screen-ah/eax: (addr handle cell) <- get self, screen-var
-    new-fake-screen screen-ah, 5/width, 4/height, 1/enable-pixel-graphics
+    new-fake-screen screen-ah, 8/width, 3/height, 1/enable-pixel-graphics
     var keyboard-ah/eax: (addr handle cell) <- get self, keyboard-var
     new-fake-keyboard keyboard-ah, 0x10/keyboard-capacity
   }