Remove warning and cleanup console output.

This commit is contained in:
Ali Mashtizadeh 2023-08-30 13:03:55 -04:00
parent cbf5643974
commit f2b35697a5

View File

@ -201,6 +201,9 @@ again:
void consoleputc(int c,void* handle)
{
if (c == '\n') {
Console_Putc('\r');
}
Console_Putc(c);
}
@ -225,7 +228,5 @@ void Debug_Assert(const char *fmt, ...)
va_end(ap);
Panic("");
return;
}