Skip to content

Commit

Permalink
Added missing initializer for null gfx driver (poll events func)
Browse files Browse the repository at this point in the history
  • Loading branch information
mudhairless committed Mar 12, 2014
1 parent 3e8a607 commit 5573a41
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/gfxlib2/gfx_driver_null.c
Expand Up @@ -19,7 +19,8 @@ const GFXDRIVER __fb_gfxDriverNull =
NULL, /* void (*set_window_title)(char *title); */
NULL, /* int (*set_window_pos)(int x, int y); */
NULL, /* int *(*fetch_modes)(int depth, int *size); */
NULL /* void (*flip)(void); */
NULL, /* void (*flip)(void); */
NULL /* void (*poll_events)(void); */
};


Expand Down

0 comments on commit 5573a41

Please sign in to comment.