diff options
| author | Miguel <m.i@gmx.at> | 2018-10-13 17:18:49 +0200 |
|---|---|---|
| committer | Miguel <m.i@gmx.at> | 2018-10-13 17:18:49 +0200 |
| commit | 5aeab1c853e487aa0042d5c32200d623efe908d3 (patch) | |
| tree | 51c810e0ce95c2b031b69999be2c0ab4244b2749 /userspace/xterm/terminal.c | |
| parent | 279f3336a8f6b31ca38bdd272c73aebd68fa88fe (diff) | |
fontstuff et al.
Diffstat (limited to 'userspace/xterm/terminal.c')
| -rw-r--r-- | userspace/xterm/terminal.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/userspace/xterm/terminal.c b/userspace/xterm/terminal.c index ed2b175..60cd8b0 100644 --- a/userspace/xterm/terminal.c +++ b/userspace/xterm/terminal.c @@ -384,14 +384,15 @@ terminal_tty terminal_init(term_out *screen,term_in *input) return tty; } + term_out tout; terminal_tty tty; + terminal_tty* terminal_init_vesa() { tout.put_char=vesa_console_put_char; tout.update_cursor=vesa_update_cursor; - tty=(terminal_init(&tout,NULL)); return &tty; |
