about summary refs log tree commit diff stats
path: root/shell/sandbox.mu
diff options
context:
space:
mode:
Diffstat (limited to 'shell/sandbox.mu')
-rw-r--r--shell/sandbox.mu8
1 files changed, 4 insertions, 4 deletions
diff --git a/shell/sandbox.mu b/shell/sandbox.mu
index 1d9e2289..65ea1557 100644
--- a/shell/sandbox.mu
+++ b/shell/sandbox.mu
@@ -9,7 +9,7 @@ type sandbox {
   cursor-in-trace?: boolean
 }
 
-fn initialize-sandbox _self: (addr sandbox), screen-and-keyboard?: boolean {
+fn initialize-sandbox _self: (addr sandbox), fake-screen-and-keyboard?: boolean {
   var self/esi: (addr sandbox) <- copy _self
   var data-ah/eax: (addr handle gap-buffer) <- get self, data
   allocate data-ah
@@ -20,12 +20,12 @@ fn initialize-sandbox _self: (addr sandbox), screen-and-keyboard?: boolean {
   populate-stream value-ah, 0x1000/4KB
   #
   {
-    compare screen-and-keyboard?, 0/false
+    compare fake-screen-and-keyboard?, 0/false
     break-if-=
     var screen-ah/eax: (addr handle cell) <- get self, screen-var
-    new-screen screen-ah, 5/width, 4/height
+    new-fake-screen screen-ah, 5/width, 4/height
     var keyboard-ah/eax: (addr handle cell) <- get self, keyboard-var
-    new-keyboard keyboard-ah, 0x10/keyboard-capacity
+    new-fake-keyboard keyboard-ah, 0x10/keyboard-capacity
   }
   #
   var trace-ah/eax: (addr handle trace) <- get self, trace