about summary refs log tree commit diff stats
path: root/shell/cell.mu
diff options
context:
space:
mode:
Diffstat (limited to 'shell/cell.mu')
-rw-r--r--shell/cell.mu4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/cell.mu b/shell/cell.mu
index 9cb6ea9e..eb95f2ee 100644
--- a/shell/cell.mu
+++ b/shell/cell.mu
@@ -139,7 +139,7 @@ fn allocate-screen _out: (addr handle cell) {
   copy-to *type, 5/screen
 }
 
-fn new-screen _out: (addr handle cell), width: int, height: int {
+fn new-fake-screen _out: (addr handle cell), width: int, height: int {
   var out/eax: (addr handle cell) <- copy _out
   allocate-screen out
   var out-addr/eax: (addr cell) <- lookup *out
@@ -171,7 +171,7 @@ fn allocate-keyboard _out: (addr handle cell) {
   copy-to *type, 6/keyboard
 }
 
-fn new-keyboard _out: (addr handle cell), capacity: int {
+fn new-fake-keyboard _out: (addr handle cell), capacity: int {
   var out/eax: (addr handle cell) <- copy _out
   allocate-keyboard out
   var out-addr/eax: (addr cell) <- lookup *out