(Xenon) xenon360_gfx.c - cleanup

This commit is contained in:
twinaphex 2014-08-15 21:32:36 +02:00
parent ab780d22ed
commit ed3c03687d

View File

@ -263,14 +263,14 @@ static void xenon360_gfx_set_rotation(void *data, unsigned rotation)
(void)rotation; (void)rotation;
} }
const video_driver_t video_xenon360 = { const video_driver_t video_xenon360 = {
.init = xenon360_gfx_init, xenon360_gfx_init,
.frame = xenon360_gfx_frame, xenon360_gfx_frame,
.alive = xenon360_gfx_alive, xenon360_gfx_set_nonblock_state,
.set_nonblock_state = xenon360_gfx_set_nonblock_state, xenon360_gfx_alive,
.focus = xenon360_gfx_focus, xenon360_gfx_focus,
.free = xenon360_gfx_free, NULL,
.ident = "xenon360" xenon360_gfx_free,
"xenon360"
}; };