Cleanup whitespace

(cherry picked from commit b5af168257f3f1fee19a314ed7d88c31bf345750)
This commit is contained in:
michaelangel007 2014-11-27 09:33:06 -08:00
parent c04e934a27
commit d5c646a2bc

View File

@ -270,7 +270,7 @@ bool ConsoleBufferPush ( const char * pText )
{ {
while (g_nConsoleBuffer >= CONSOLE_BUFFER_HEIGHT) while (g_nConsoleBuffer >= CONSOLE_BUFFER_HEIGHT)
{ {
ConsoleBufferToDisplay(); ConsoleBufferToDisplay();
} }
conchar_t c; conchar_t c;
@ -292,7 +292,7 @@ bool ConsoleBufferPush ( const char * pText )
else else
{ {
g_nConsoleBuffer++; g_nConsoleBuffer++;
} }
pSrc++; pSrc++;
pDst = & g_aConsoleBuffer[ g_nConsoleBuffer ][ 0 ]; pDst = & g_aConsoleBuffer[ g_nConsoleBuffer ][ 0 ];
} }