From d11ef35dc320617dab06543428bf15830cbd4f03 Mon Sep 17 00:00:00 2001 From: otya128 Date: Thu, 15 Dec 2016 22:17:49 +0900 Subject: [PATCH] Fix mouse wheel --- SMILEBASIC/petitcomputer.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SMILEBASIC/petitcomputer.d b/SMILEBASIC/petitcomputer.d index cda6f33..6d26f59 100644 --- a/SMILEBASIC/petitcomputer.d +++ b/SMILEBASIC/petitcomputer.d @@ -844,7 +844,7 @@ class PetitComputer case SDL_MOUSEWHEEL: synchronized (renderSync) { - currentDisplay.yoffset -= event.wheel.y * 10; + currentDisplay.yoffset -= event.wheel.y * 8; } break; default: