Skip to content

Commit

Permalink
Update emu_oled.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
limpkin authored Jul 12, 2020
1 parent 3d98f33 commit 4a53463
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source_code/main_mcu/src/EMU/emu_oled.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ extern "C" void inputs_scan(void)
void OLEDWidget::wheelEvent(QWheelEvent *evt) {
int delta = evt->angleDelta().y()/120;
irq_mutex.lock();
inputs_wheel_cur_increment += delta;
inputs_wheel_cur_increment -= delta;
irq_mutex.unlock();
}

Expand Down

0 comments on commit 4a53463

Please sign in to comment.