mirror of
https://github.com/AppleWin/AppleWin.git
synced 2025-08-15 18:27:29 +00:00
Debugger: Fix to use logical "&&" for boolean variables (PR #1073)
This commit is contained in:
@@ -5782,7 +5782,7 @@ Update_t CmdOutputCalc (int nArgs)
|
|||||||
if (bParen)
|
if (bParen)
|
||||||
strText += '(';
|
strText += '(';
|
||||||
|
|
||||||
if (bHi & bLo)
|
if (bHi && bLo)
|
||||||
strText += "High Ctrl";
|
strText += "High Ctrl";
|
||||||
else
|
else
|
||||||
if (bHi)
|
if (bHi)
|
||||||
|
Reference in New Issue
Block a user