Debugger: Fix to use logical "&&" for boolean variables (PR #1073)

This commit is contained in:
Kelvin Lee
2022-03-28 06:44:50 +11:00
committed by GitHub
parent eac88a340d
commit 0f7e240841
+1 -1
View File
@@ -5782,7 +5782,7 @@ Update_t CmdOutputCalc (int nArgs)
if (bParen)
strText += '(';
if (bHi & bLo)
if (bHi && bLo)
strText += "High Ctrl";
else
if (bHi)