Get rid of unintentional typedef redefinition (C11 feature)

This commit is contained in:
twinaphex 2018-05-14 00:29:20 +02:00
parent d0a697ebf0
commit 2fdd4444ff
1 changed files with 2 additions and 2 deletions

View File

@ -406,7 +406,7 @@ typedef struct
} scratchpad; } scratchpad;
} menu_handle_t; } menu_handle_t;
typedef struct menu_display_ctx_draw struct menu_display_ctx_draw
{ {
float x; float x;
float y; float y;
@ -429,7 +429,7 @@ typedef struct menu_display_ctx_draw
} pipeline; } pipeline;
float rotation; float rotation;
float scale_factor; float scale_factor;
} menu_display_ctx_draw_t; };
typedef struct menu_display_ctx_rotate_draw typedef struct menu_display_ctx_rotate_draw
{ {