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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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)