]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
forgot to update the define usage when 90 degree rotation was moved to a runtime...
authorXScorpion2 <rcalt2vt@gmail.com>
Mon, 22 Apr 2019 15:14:57 +0000 (10:14 -0500)
committerMechMerlin <30334081+mechmerlin@users.noreply.github.com>
Mon, 22 Apr 2019 15:14:57 +0000 (08:14 -0700)
keyboards/zen/rev2/rev2.c

index 7bd8efbdd07207145005d9fd4d6a87d9c493a033..3f4a92c63d6195580cfe487c758a2fddf0dd0724 100644 (file)
@@ -41,7 +41,7 @@ void render_status(void) {
 
   // Host Keyboard LED Status
   uint8_t led_usb_state = host_keyboard_leds();
-  oled_set_cursor(0, OLED_MAX_LINES - 4); // Line 13
+  oled_set_cursor(0, oled_max_lines() - 4); // Line 13
   oled_write_P(led_usb_state & (1<<USB_LED_NUM_LOCK) ? PSTR("NUMLK") : PSTR("     "), false); // Line 14
   oled_write_P(led_usb_state & (1<<USB_LED_CAPS_LOCK) ? PSTR("CAPLK") : PSTR("     "), false); // Line 15
   oled_write_P(led_usb_state & (1<<USB_LED_SCROLL_LOCK) ? PSTR("SCRLK") : PSTR("     "), false); // Line 16