Remove warning and cleanup console output.
This commit is contained in:
parent
cbf5643974
commit
f2b35697a5
@ -201,6 +201,9 @@ again:
|
|||||||
|
|
||||||
void consoleputc(int c,void* handle)
|
void consoleputc(int c,void* handle)
|
||||||
{
|
{
|
||||||
|
if (c == '\n') {
|
||||||
|
Console_Putc('\r');
|
||||||
|
}
|
||||||
Console_Putc(c);
|
Console_Putc(c);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -225,7 +228,5 @@ void Debug_Assert(const char *fmt, ...)
|
|||||||
va_end(ap);
|
va_end(ap);
|
||||||
|
|
||||||
Panic("");
|
Panic("");
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user