Skip to content

Commit 258e8c3

Browse files
committed
Make check for empty combos more explicit
1 parent 15552f3 commit 258e8c3

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)