Commit 04c05620 authored by Bob Pendleton's avatar Bob Pendleton

fixed code for printing mousewheel events to match the new format of mousewheel events.

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%402432
parent 82e02091
......@@ -825,8 +825,8 @@ PrintEvent(SDL_Event * event)
event->button.y, event->button.windowID);
break;
case SDL_MOUSEWHEEL:
fprintf(stderr, "Mouse %d: wheel scrolled %d in window %d",
event->wheel.which, event->wheel.motion,
fprintf(stderr, "Mouse %d: wheel scrolled %d in x and %d in y in window %d",
event->wheel.which, event->wheel.x, event->wheel.y,
event->wheel.windowID);
break;
case SDL_JOYBALLMOTION:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment