fix typos to allow gltouchjoy to build

This commit is contained in:
Aaron Culliney 2015-04-12 16:20:01 -07:00
parent 737f6c5a13
commit e2794070dd

View File

@ -677,11 +677,11 @@ static void _init_gltouchjoy(void) {
joydriver_setTouchAxisValues = &gltouchjoy_setTouchAxisValues;
glnode_registerNode(RENDER_LOW, (GLNode){
.setup = &gltouchjoy_setup;
.shutdown = &gltouchjoy_shutdown;
.render = &gltouchjoy_render;
.reshape = &gltouchjoy_reshape;
.onTouchEvent = &gltouchjoy_onTouchEvent;
.setup = &gltouchjoy_setup,
.shutdown = &gltouchjoy_shutdown,
.render = &gltouchjoy_render,
.reshape = &gltouchjoy_reshape,
.onTouchEvent = &gltouchjoy_onTouchEvent,
});
}