Skip to content

Commit

Permalink
Fix to make phantom board compile
Browse files Browse the repository at this point in the history
  • Loading branch information
erikpe committed Nov 26, 2016
1 parent 093bfd6 commit d14f72e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion orphan/phantom/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ action_t keymap_fn_to_action(uint8_t keycode)
if (FN_INDEX(keycode) < FN_ACTIONS_SIZE) {
action.code = pgm_read_word(&fn_actions[FN_INDEX(keycode)]);
} else {
action.code = ACTION_NO;
return (action_t)ACTION_NO;
}
return action;
}

0 comments on commit d14f72e

Please sign in to comment.