oops, missed a spot

(cherry picked from commit 19872a6aeb)
This commit is contained in:
Ben Byer 2008-04-17 02:31:53 -07:00 committed by Jeremy Huddleston
parent 0bd1c369cc
commit 582397cd02

View File

@ -459,7 +459,7 @@ void DarwinSendScrollEvents(float count_x, float count_y,
ErrorF("DarwinSendScrollEvents called before darwinEvents was initialized\n");
return;
}
ErrorF("scroll(%f, %f)\n", count_x, count_y);
int sign_x = count_x > 0.0f ? SCROLLWHEELLEFTFAKE : SCROLLWHEELRIGHTFAKE;
int sign_y = count_y > 0.0f ? SCROLLWHEELUPFAKE : SCROLLWHEELDOWNFAKE;
count_x = fabs(count_x);