summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/terminal.fl2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/terminal.fl b/test/terminal.fl
index 379520291..490fcf301 100644
--- a/test/terminal.fl
+++ b/test/terminal.fl
@@ -1282,7 +1282,7 @@ for (int i=0; i<50; i++ ) {
for ( int col=0; col<cols; col++ ) {
char c = ' ' + (rand() % 0x50); // random ASCII characters
G_tty->textfgcolor_xterm(rand() % 8); // random fg uchar color for each char
- G_tty->putchar(c, row, col);
+ G_tty->plot_char(c, row, col);
}
}
G_tty->redraw();