Cleanup code conventions

This commit is contained in:
michaelangel007 2014-08-25 17:12:16 -07:00
parent 1bcf5b29ee
commit 77aef24880

View File

@ -4714,16 +4714,16 @@ size_t Util_GetTextScreen ( char* &pText_ )
{
char c; // TODO: FormatCharTxtCtrl() ?
if( g_bVideoMode & VF_80COL )
if ( g_bVideoMode & VF_80COL )
{ // AUX
c = g_pTextBank1[ nAddressStart ] & 0x7F;
if( c < 0x20)
if ( c < 0x20 )
c = ' '; // INVERSE control character
*pEnd++ = c;
} // MAIN -- NOTE: intentional indent & outside if() !
c = g_pTextBank0[ nAddressStart ] & 0x7F;
if( c < 0x20 )
if ( c < 0x20 )
c = ' '; // INVERSE control character
*pEnd++ = c;