haiku: Invert mouse wheel values to match what SDL expects.

Partially fixes Bugzilla #4442.
Peter Kosyh 2019-11-11 21:59:39 -05:00
parent b22fb9e2ba
commit 55b5d8dce6
1 changed files with 1 additions and 1 deletions

View File

@ -261,7 +261,7 @@ private:
return; return;
} }
win = GetSDLWindow(winID); win = GetSDLWindow(winID);
SDL_SendMouseWheel(win, 0, xTicks, yTicks, SDL_MOUSEWHEEL_NORMAL); SDL_SendMouseWheel(win, 0, xTicks, -yTicks, SDL_MOUSEWHEEL_NORMAL);
} }
void _HandleKey(BMessage *msg) { void _HandleKey(BMessage *msg) {