mirror of
https://github.com/AppleWin/AppleWin.git
synced 2025-02-04 10:30:34 +00:00
Cleanup code conventions
This commit is contained in:
parent
1bcf5b29ee
commit
77aef24880
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user