[Keymap] Fixing Sol Rev2 default keymap OLED rotation. (#6448)

This commit is contained in:
XScorpion2 2019-08-01 11:34:51 -05:00 committed by Drashna Jaelre
parent 9609ae60a6
commit f1cebc9d9d
1 changed files with 1 additions and 1 deletions

View File

@ -300,7 +300,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
#ifdef OLED_DRIVER_ENABLE
oled_rotation_t oled_init_user(oled_rotation_t rotation) {
if (is_keyboard_master())
return OLED_ROTATION_90;
return OLED_ROTATION_270;
return rotation;
}