mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-05 17:01:11 +00:00
[qfcc] Rename G_* macros to Q_*
They clash with those in progs.h, which is needed for using progs code in the compiler.
This commit is contained in:
parent
47163ef2c4
commit
e1d7854af5
2 changed files with 3 additions and 3 deletions
|
@ -110,8 +110,8 @@ extern pr_info_t pr;
|
|||
#define D_POINTER(t,d) (&D_PACKED (t, d))
|
||||
#define D_STRUCT(t,d) (*D_POINTER (t, d))
|
||||
|
||||
#define G_POINTER(s,t,o) ((t *)((s)->data + o))
|
||||
#define G_STRUCT(s,t,o) (*G_POINTER (s, t, o))
|
||||
#define Q_POINTER(s,t,o) ((t *)((s)->data + o))
|
||||
#define Q_STRUCT(s,t,o) (*Q_POINTER (s, t, o))
|
||||
|
||||
#define POINTER_OFS(s,p) ((pr_type_t *) (p) - (s)->data)
|
||||
|
||||
|
|
|
@ -1075,7 +1075,7 @@ finish_class (class_t *class)
|
|||
space = class->def->space;
|
||||
cls = &D_STRUCT (pr_class_t, class->def);
|
||||
|
||||
meta = &G_STRUCT (space, pr_class_t, cls->class_pointer);
|
||||
meta = &Q_STRUCT (space, pr_class_t, cls->class_pointer);
|
||||
|
||||
EMIT_DEF (space, meta->methods, emit_methods (class->methods,
|
||||
class->name, 0));
|
||||
|
|
Loading…
Reference in a new issue