Removed useless assignment in Cocoa backend

This commit is contained in:
alexey.lysiuk 2017-02-03 21:56:14 +02:00
parent 82eae78f7e
commit f04b0d129d

View file

@ -692,7 +692,6 @@ void ProcessMouseWheelEvent(NSEvent* theEvent)
{
event.type = EV_GUI_Event;
event.subtype = delta > 0.0f ? EV_GUI_WheelUp : EV_GUI_WheelDown;
event.data3 = delta;
event.data3 = ModifierFlagsToGUIKeyModifiers(theEvent);
}
else