Fixed right mouse click scrolling
This commit is contained in:
@@ -549,7 +549,12 @@ int VideoDriver_SDL::PollEvent()
|
|||||||
|
|
||||||
switch (ev.type) {
|
switch (ev.type) {
|
||||||
case SDL_MOUSEMOTION:
|
case SDL_MOUSEMOTION:
|
||||||
|
#ifdef __ANDROID__
|
||||||
|
// No mouse warping on Android, mouse strictly follows finger
|
||||||
|
if (false) {
|
||||||
|
#else
|
||||||
if (_cursor.fix_at) {
|
if (_cursor.fix_at) {
|
||||||
|
#endif
|
||||||
int dx = ev.motion.x - _cursor.pos.x;
|
int dx = ev.motion.x - _cursor.pos.x;
|
||||||
int dy = ev.motion.y - _cursor.pos.y;
|
int dy = ev.motion.y - _cursor.pos.y;
|
||||||
if (dx != 0 || dy != 0) {
|
if (dx != 0 || dy != 0) {
|
||||||
|
|||||||
Reference in New Issue
Block a user