Skip to content

Commit 2467832

Browse files
committed
Make check for empty combos more explicit
1 parent 1b1823f commit 2467832

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

source/ButtonComboInfo.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ bool ButtonComboInfoIF::conflictsWith(const ButtonComboModule_ButtonComboOptions
9999
}
100100

101101
// No conflicts when either button combo is empty.
102-
if (!other.combo || !mCombo) {
102+
if (other.combo == 0 || mCombo == 0) {
103103
return false;
104104
}
105105

0 commit comments

Comments
 (0)