mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-05-30 00:10:40 +00:00
change all the SVFIELD calls to SVtype. this should make the code a little
easier to read.
This commit is contained in:
parent
cd522a6f97
commit
fb42199637
23 changed files with 1166 additions and 1150 deletions
|
@ -165,6 +165,13 @@ extern sv_fields_t sv_fields;
|
|||
#define SVFIELD(e,f,t) E_var (e, sv_fields.f, t)
|
||||
#endif
|
||||
|
||||
#define SVfloat(e,f) SVFIELD (e, f, float)
|
||||
#define SVstring(e,f) SVFIELD (e, f, string)
|
||||
#define SVfunc(e,f) SVFIELD (e, f, func)
|
||||
#define SVentity(e,f) SVFIELD (e, f, entity)
|
||||
#define SVvector(e,f) SVFIELD (e, f, vector)
|
||||
#define SVinteger(e,f) SVFIELD (e, f, integer)
|
||||
|
||||
#define PROGHEADER_CRC 54730
|
||||
|
||||
extern func_t EndFrame;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue