mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Make this compile when TERM_EMU is not defined.
This commit is contained in:
parent
2f834a0b41
commit
f9f0d902c1
1 changed files with 2 additions and 0 deletions
|
|
@ -86,9 +86,11 @@ spinc_putchar(int c)
|
|||
if (now < (lasttime + 1))
|
||||
return;
|
||||
lasttime = now;
|
||||
#ifdef TERM_EMU
|
||||
get_pos(&curx, &cury);
|
||||
if (curx > 0)
|
||||
curs_move(&curx, &cury, curx - 1, cury);
|
||||
#endif
|
||||
vidc_biosputchar((char)tw_chars);
|
||||
tw_chars = (tw_chars >> 8) | ((tw_chars & (unsigned long)0xFF) << 24);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue