mirror of
https://github.com/AppleWin/AppleWin.git
synced 2025-01-03 11:30:22 +00:00
Debugger: Fix to use logical "&&" for boolean variables (PR #1073)
This commit is contained in:
parent
eac88a340d
commit
0f7e240841
@ -5782,7 +5782,7 @@ Update_t CmdOutputCalc (int nArgs)
|
||||
if (bParen)
|
||||
strText += '(';
|
||||
|
||||
if (bHi & bLo)
|
||||
if (bHi && bLo)
|
||||
strText += "High Ctrl";
|
||||
else
|
||||
if (bHi)
|
||||
|
Loading…
Reference in New Issue
Block a user