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

View File

@@ -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)