Properly newline in console command_prompt

This commit is contained in:
Berkus Decker 2019-03-10 15:10:46 +02:00
parent c75da94619
commit 0f6e37a29b
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ impl Console {
input = self.getc();
if input == '\n' {
self.putc('\n');
self.puts("\n"); // do \r\n output
return &buf[..i];
} else {
if i < buf.len() {