From 27212ab0018fd685ccf7af8de97da6be655635bd Mon Sep 17 00:00:00 2001 From: Victor Date: Sun, 14 Apr 2024 19:25:33 -0500 Subject: [PATCH] Had to fix the rollow variable names --- users/t4corun/features/oled.c | 4 ++-- users/t4corun/features/oled.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/users/t4corun/features/oled.c b/users/t4corun/features/oled.c index d32d58e3..c7282a3c 100644 --- a/users/t4corun/features/oled.c +++ b/users/t4corun/features/oled.c @@ -5,7 +5,7 @@ void render_crkbd_logo(void) { } void render_rollow_logo(void) { - oled_write_raw_P(barbellboards_logo, sizeof(barbellboards_logo)); + oled_write_raw_P(rollow_logo, sizeof(rollow_logo)); } void render_qmk_logo(void) { @@ -92,7 +92,7 @@ bool oled_task_user(void) { render_oled_main(); // Renders the current keyboard state (layer, lock, caps, scroll, etc) } else { #if defined( KEYBOARD_barbellboards_rollow ) - render_barbellboards_logo(); + render_rollow_logo(); #elif defined( KEYBOARD_crkbd ) render_crkbd_logo(); #else diff --git a/users/t4corun/features/oled.h b/users/t4corun/features/oled.h index 192eb8d5..fad58170 100644 --- a/users/t4corun/features/oled.h +++ b/users/t4corun/features/oled.h @@ -68,7 +68,7 @@ static const char PROGMEM qmk_logo[] = { // 128x24 }; -static const char PROGMEM barbellboards_logo[] = { // 128x32 +static const char PROGMEM rollow_logo[] = { // 128x32 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x80, 0x00, 0x00, 0xf0, 0xf0, 0x00, 0x00, 0xe0, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,