From 2306c974e590d80946aaf948dd477853205bb7a7 Mon Sep 17 00:00:00 2001 From: QMK Bot Date: Sat, 7 Mar 2020 01:24:47 +0000 Subject: [PATCH] format code according to conventions [skip ci] --- drivers/oled/oled_driver.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/drivers/oled/oled_driver.c b/drivers/oled/oled_driver.c index e2cdc2fb7..079f5688f 100644 --- a/drivers/oled/oled_driver.c +++ b/drivers/oled/oled_driver.c @@ -430,16 +430,16 @@ void oled_write_ln(const char *data, bool invert) { void oled_pan(bool left) { uint16_t i = 0; - for (uint16_t y = 0; y < OLED_DISPLAY_HEIGHT/8; y++) { - if(left) { + for (uint16_t y = 0; y < OLED_DISPLAY_HEIGHT / 8; y++) { + if (left) { for (uint16_t x = 0; x < OLED_DISPLAY_WIDTH - 1; x++) { - i = y * OLED_DISPLAY_WIDTH + x; - oled_buffer[i] = oled_buffer[i+1]; + i = y * OLED_DISPLAY_WIDTH + x; + oled_buffer[i] = oled_buffer[i + 1]; } } else { - for (uint16_t x = OLED_DISPLAY_WIDTH -1; x > 0; x--) { - i = y * OLED_DISPLAY_WIDTH + x; - oled_buffer[i] = oled_buffer[i-1]; + for (uint16_t x = OLED_DISPLAY_WIDTH - 1; x > 0; x--) { + i = y * OLED_DISPLAY_WIDTH + x; + oled_buffer[i] = oled_buffer[i - 1]; } } }