mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-21 11:21:18 +00:00
model_t fix for Sun was broken - re-fixed
This commit is contained in:
parent
95a8c7e466
commit
35e0293824
1 changed files with 5 additions and 5 deletions
|
@ -52,6 +52,11 @@
|
|||
#include <netinet/in.h>
|
||||
#endif
|
||||
|
||||
#ifdef __sun
|
||||
/* Sun's model_t in sys/model.h conflicts w/ Quake's model_t */
|
||||
#define model_t sunmodel_t
|
||||
#endif
|
||||
|
||||
#include <quakedef.h>
|
||||
#include <winquake.h>
|
||||
#ifdef QUAKEWORLD
|
||||
|
@ -85,11 +90,6 @@
|
|||
#ifdef QUAKEWORLD
|
||||
#include <cl_slist.h>
|
||||
#endif
|
||||
#ifdef __sun
|
||||
/* Sun's model_t in sys/model.h conflicts w/ Quake's model_t */
|
||||
#define model_t sunmodel_t
|
||||
#endif
|
||||
|
||||
#ifdef __sun
|
||||
#undef model_t
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue