Write newline when closing the kernel debugger.

This commit is contained in:
Jonas 'Sortie' Termansen 2015-05-15 19:02:31 +02:00
parent 41d4dbdce7
commit 39d8894fc0
1 changed files with 3 additions and 0 deletions

View File

@ -260,6 +260,9 @@ void ReadCommand(char* buffer, size_t buffer_length)
{
if ( !ignore_next_f10 )
{
if ( !written )
PrintString("exit");
PrintString("\n");
strncpy(buffer, "exit", buffer_length);
break;
}