Browse Source

fix helix/rev2:edvorakjp build error (#16433)

'helix/rev2/keymaps/edvorakjp' was no longer buildable due to changes made by #14864.
The reason is that the prototype of `oled_task_user()` was changed in keymaps/edvorakjp/oled.c, but keymaps/edvorakjp/oled.h was not changed.
Therefore, I modified the prototype in keymaps/edvorakjp/oled.h.
pull/16471/head
Takeshi ISHII 2 years ago
committed by GitHub
parent
commit
e884414e1e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      keyboards/helix/rev2/keymaps/edvorakjp/oled.h

+ 1
- 1
keyboards/helix/rev2/keymaps/edvorakjp/oled.h View File

@ -9,4 +9,4 @@ void render_layer_state(void);
void render_logo(void);
void render_mode_icon(bool is_windows);
oled_rotation_t oled_init_user(oled_rotation_t rotation);
void oled_task_user(void);
bool oled_task_user(void);

Loading…
Cancel
Save