Print the newline character along with the carriage return when TERM_EMU is
disabled. Without this we print all lines over top of each other. Sponsored by: ABT Systems Ltd
This commit is contained in:
parent
9b6b6d0c02
commit
05e9e0ac08
@ -139,8 +139,7 @@ efi_cons_rawputchar(int c)
|
|||||||
#ifndef TERM_EMU
|
#ifndef TERM_EMU
|
||||||
if (c == '\n')
|
if (c == '\n')
|
||||||
efi_cons_efiputchar('\r');
|
efi_cons_efiputchar('\r');
|
||||||
else
|
efi_cons_efiputchar(c);
|
||||||
efi_cons_efiputchar(c);
|
|
||||||
#else
|
#else
|
||||||
switch (c) {
|
switch (c) {
|
||||||
case '\r':
|
case '\r':
|
||||||
|
Loading…
x
Reference in New Issue
Block a user