oops, missed a spot
(cherry picked from commit 19872a6aeb8ee9cb0e33e4b4ffd794c9dbefe0cf)
This commit is contained in:
parent
0bd1c369cc
commit
582397cd02
|
@ -459,7 +459,7 @@ void DarwinSendScrollEvents(float count_x, float count_y,
|
||||||
ErrorF("DarwinSendScrollEvents called before darwinEvents was initialized\n");
|
ErrorF("DarwinSendScrollEvents called before darwinEvents was initialized\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
ErrorF("scroll(%f, %f)\n", count_x, count_y);
|
|
||||||
int sign_x = count_x > 0.0f ? SCROLLWHEELLEFTFAKE : SCROLLWHEELRIGHTFAKE;
|
int sign_x = count_x > 0.0f ? SCROLLWHEELLEFTFAKE : SCROLLWHEELRIGHTFAKE;
|
||||||
int sign_y = count_y > 0.0f ? SCROLLWHEELUPFAKE : SCROLLWHEELDOWNFAKE;
|
int sign_y = count_y > 0.0f ? SCROLLWHEELUPFAKE : SCROLLWHEELDOWNFAKE;
|
||||||
count_x = fabs(count_x);
|
count_x = fabs(count_x);
|
||||||
|
|
Loading…
Reference in New Issue