mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-01 05:21:02 +00:00
[ui] Fix an include order issue
Concrete sized arrays need concrete types.
This commit is contained in:
parent
1b89598b28
commit
4522264c57
1 changed files with 3 additions and 1 deletions
|
@ -31,6 +31,8 @@
|
|||
#ifndef __QF_ui_imui_h
|
||||
#define __QF_ui_imui_h
|
||||
|
||||
#include "QF/ecs/component.h"
|
||||
|
||||
typedef struct imui_ctx_s imui_ctx_t;
|
||||
struct canvas_system_s;
|
||||
struct IE_event_s;
|
||||
|
@ -42,7 +44,7 @@ enum {
|
|||
imui_comp_count
|
||||
};
|
||||
|
||||
extern const struct component_s imui_components[imui_comp_count];
|
||||
extern const component_t imui_components[imui_comp_count];
|
||||
|
||||
typedef enum {
|
||||
imui_size_none,
|
||||
|
|
Loading…
Reference in a new issue