瀏覽代碼

core: Fix variable init and header include

master
tmk 8 年之前
父節點
當前提交
325a99acd9
共有 1 個檔案被更改,包括 2 行新增1 行删除
  1. 2
    1
      tmk_core/common/keymap.c

+ 2
- 1
tmk_core/common/keymap.c 查看文件

#include "action_macro.h" #include "action_macro.h"
#include "wait.h" #include "wait.h"
#include "debug.h" #include "debug.h"
#include "bootloader.h"




static action_t keycode_to_action(uint8_t keycode); static action_t keycode_to_action(uint8_t keycode);
/* translates keycode to action */ /* translates keycode to action */
static action_t keycode_to_action(uint8_t keycode) static action_t keycode_to_action(uint8_t keycode)
{ {
action_t action;
action_t action = {};
switch (keycode) { switch (keycode) {
case KC_A ... KC_EXSEL: case KC_A ... KC_EXSEL:
case KC_LCTRL ... KC_RGUI: case KC_LCTRL ... KC_RGUI: