Get rid of unintentional typedef redefinition (C11 feature)
This commit is contained in:
parent
d0a697ebf0
commit
2fdd4444ff
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue