From 35e029382414ce6b755dbbd3723613cbe99774a2 Mon Sep 17 00:00:00 2001 From: Loring Holden Date: Wed, 14 Jun 2000 13:58:00 +0000 Subject: [PATCH] model_t fix for Sun was broken - re-fixed --- common/cl_main.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/common/cl_main.c b/common/cl_main.c index 1a47134..ac8def8 100644 --- a/common/cl_main.c +++ b/common/cl_main.c @@ -52,6 +52,11 @@ #include #endif +#ifdef __sun +/* Sun's model_t in sys/model.h conflicts w/ Quake's model_t */ +#define model_t sunmodel_t +#endif + #include #include #ifdef QUAKEWORLD @@ -85,11 +90,6 @@ #ifdef QUAKEWORLD #include #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