(GX) Style nits to gx_video.c

This commit is contained in:
twinaphex 2014-06-02 12:04:48 +02:00
parent 762f4dc83d
commit 9da8dc3409

View File

@ -1266,17 +1266,18 @@ static void gx_get_overlay_interface(void *data, const video_overlay_interface_t
#endif #endif
const video_driver_t video_gx = { const video_driver_t video_gx = {
.init = gx_init, gx_init,
.frame = gx_frame, gx_frame,
.alive = gx_alive, gx_set_nonblock_state,
.set_nonblock_state = gx_set_nonblock_state, gx_alive,
.focus = gx_focus, gx_focus,
.free = gx_free, NULL,
.ident = "gx", gx_free,
.set_rotation = gx_set_rotation, "gx",
.viewport_info = gx_viewport_info, gx_set_rotation,
gx_viewport_info,
#ifdef HAVE_OVERLAY #ifdef HAVE_OVERLAY
.overlay_interface = gx_get_overlay_interface, gx_get_overlay_interface,
#endif #endif
.poke_interface = gx_get_poke_interface, gx_get_poke_interface,
}; };