mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
[libr] Fix missing alias meta name
This commit is contained in:
parent
e80344c58e
commit
d88c1e2f40
2 changed files with 3 additions and 2 deletions
|
@ -90,7 +90,7 @@ typedef struct qfot_type_encodings_s {
|
|||
int size;
|
||||
} qfot_type_encodings_t;
|
||||
|
||||
@extern string ty_meta_name[6];
|
||||
@extern string ty_meta_name[7];
|
||||
@extern string pr_type_name[ev_type_count];
|
||||
|
||||
#endif
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
#include <runtime.h>
|
||||
#include <types.h>
|
||||
|
||||
string ty_meta_name[6] = {
|
||||
string ty_meta_name[7] = {
|
||||
"basic",
|
||||
"struct",
|
||||
"union",
|
||||
"enum",
|
||||
"array",
|
||||
"class",
|
||||
"alias",
|
||||
};
|
||||
|
||||
string pr_type_name[ev_type_count] = {
|
||||
|
|
Loading…
Reference in a new issue