Update checking board master function (#12493)

changed is_master to is_keyboard_master()
master
calebchongc 2021-04-25 04:59:37 +01:00 committed by GitHub
parent da6e888a32
commit 5b394e82c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -5,10 +5,10 @@
#if defined(OLED_DRIVER_ENABLE) & !defined(KEYBOARD_kyria_rev1)
static uint32_t oled_timer = 0;
extern uint8_t is_master;
oled_rotation_t oled_init_user(oled_rotation_t rotation) {
if (is_master) {
if (is_keyboard_master()) {
return OLED_ROTATION_0;
}
return OLED_ROTATION_180;
@ -99,7 +99,7 @@ void oled_task_user(void) {
else { oled_on(); }
#endif
if (is_master) {
if (is_keyboard_master()) {
render_status();
} else {
render_logo();
@ -108,4 +108,4 @@ void oled_task_user(void) {
}
}
#endif
#endif