Browse Source

Format code according to conventions (#12381)

Co-authored-by: QMK Bot <hello@qmk.fm>
pull/12249/head
github-actions[bot] 3 years ago
committed by GitHub
parent
commit
67252c246c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      drivers/oled/oled_driver.c

+ 3
- 1
drivers/oled/oled_driver.c View File

@ -155,7 +155,9 @@ static void InvertCharacter(uint8_t *cursor) {
bool oled_init(uint8_t rotation) {
#if defined(USE_I2C) && defined(SPLIT_KEYBOARD)
if (!is_keyboard_master()) { return true; }
if (!is_keyboard_master()) {
return true;
}
#endif
oled_rotation = oled_init_user(rotation);


Loading…
Cancel
Save