~ruther/qmk_firmware

2306c974e590d80946aaf948dd477853205bb7a7 — QMK Bot 5 years ago 833c5ae
format code according to conventions [skip ci]
1 files changed, 7 insertions(+), 7 deletions(-)

M drivers/oled/oled_driver.c
M drivers/oled/oled_driver.c => drivers/oled/oled_driver.c +7 -7
@@ 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];
            }
        }
    }