Fix neko call for touch event

This commit is contained in:
Vincent Petry
2015-06-16 23:29:35 +02:00
parent b48a7cad7e
commit 483af79db8

View File

@@ -46,11 +46,11 @@ namespace lime {
alloc_field (object, id_x, alloc_float (event->x));
alloc_field (object, id_y, alloc_float (event->y));
val_call1 (TouchEvent::callback->get (), object);
val_call0 (TouchEvent::callback->get ());
}
}
}
}