fixes 'layer_state_cmp' when layer is '1' (aka layer 0, aka layer 1<<0)

This commit is contained in:
Colin T.A. Gray 2017-12-11 08:53:50 -07:00 committed by Jack Humbert
parent 163ddd5d15
commit 3aec9a4354
1 changed files with 2 additions and 2 deletions

View File

@ -94,8 +94,8 @@ bool layer_state_is(uint8_t layer)
} }
bool layer_state_cmp(uint32_t cmp_layer_state, uint8_t layer) { bool layer_state_cmp(uint32_t cmp_layer_state, uint8_t layer) {
if (layer == 0) { return cmp_layer_state == 0; } if (!cmp_layer_state) { return layer == 0; }
return (cmp_layer_state & (1UL<<layer)) > 0; return (cmp_layer_state & (1UL<<layer)) != 0;
} }
void layer_move(uint8_t layer) void layer_move(uint8_t layer)