Fix mouse wheel bug (#600)

This commit is contained in:
redphx 2024-12-28 16:33:10 +07:00
parent 6a133186b8
commit e585264e8c

View File

@ -210,8 +210,8 @@ export class NativeMkbHandler extends MkbHandler {
X: data.movementX,
Y: data.movementY,
Buttons: this.mouseButtonsPressed,
WheelX: this.mouseWheelX,
WheelY: this.mouseWheelY,
WheelX: 0,
WheelY: 0,
});
}