about summary refs log tree commit diff stats
path: root/shell/cell.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-04-17 22:53:45 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-04-17 22:53:45 -0700
commitc11ea74442e20070e1453e7e1ee27b7870407023 (patch)
treef31cb7d3aab5098ea740c29ac90c64d6acf522ca /shell/cell.mu
parent1c7799486d83b9b17c0aa25277551ef72858ad03 (diff)
downloadmu-c11ea74442e20070e1453e7e1ee27b7870407023.tar.gz
.
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