mirror of
https://github.com/AppleWin/AppleWin.git
synced 2026-04-20 15:17:50 +00:00
Debugger: Improve some for-loops definitions (PR #1084)
This commit is contained in:
@@ -333,9 +333,7 @@ Update_t CmdSymbolsInfo (int nArgs)
|
||||
//sprintf( sText, " Symbols Main: %s%d%s User: %s%d%s Source: %s%d%s"
|
||||
// "Main:# Basic:# Asm:# User1:# User2:# Src1:# Src2:# Dos:# Prodos:#
|
||||
|
||||
int bTable = 1;
|
||||
int iTable = 0;
|
||||
for ( ; bTable <= bDisplaySymbolTables; iTable++, bTable <<= 1 )
|
||||
for ( int iTable = 0, bTable = 1; bTable <= bDisplaySymbolTables; iTable++, bTable <<= 1 )
|
||||
{
|
||||
if ( bDisplaySymbolTables & bTable )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user