oops, missed a spot

This commit is contained in:
Ben Byer 2008-04-17 02:31:53 -07:00
parent 769acd2934
commit 19872a6aeb

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);