diff --git a/source/Debugger/Debug.cpp b/source/Debugger/Debug.cpp index be7dcba1..f3a6b8dd 100644 --- a/source/Debugger/Debug.cpp +++ b/source/Debugger/Debug.cpp @@ -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;