about summary refs log tree commit diff stats
path: root/504test-screen.mu
diff options
context:
space:
mode:
Diffstat (limited to '504test-screen.mu')
-rw-r--r--504test-screen.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/504test-screen.mu b/504test-screen.mu
index c73d0aa6..aef85ac6 100644
--- a/504test-screen.mu
+++ b/504test-screen.mu
@@ -337,7 +337,7 @@ fn test-draw-single-grapheme {
   var _screen: screen
   var screen/esi: (addr screen) <- address _screen
   initialize-screen screen, 5, 4, 0/no-pixel-graphics
-  draw-code-point screen, 0x61/a, 0/x, 0/y, 1/fg, 2/bg
+  var dummy/eax: int <- draw-code-point screen, 0x61/a, 0/x, 0/y, 1/fg, 2/bg
   check-screen-row screen, 0/y, "a", "F - test-draw-single-grapheme"  # top-left corner of the screen
   check-screen-row-in-color screen, 1/fg, 0/y, "a", "F - test-draw-single-grapheme-fg"
   check-screen-row-in-background-color screen, 2/bg, 0/y, "a", "F - test-draw-single-grapheme-bg"