mirror of
https://github.com/FWGS/xash3d-fwgs
synced 2024-11-26 03:39:16 +01:00
common: don't use SDL headers and types in refdll, if for some reason dll wants it
This commit is contained in:
parent
8385563bef
commit
6c006e087d
@ -162,7 +162,7 @@ GNU General Public License for more details.
|
||||
#define USHRT_MAX 65535
|
||||
#endif
|
||||
|
||||
#ifdef XASH_SDL
|
||||
#if defined XASH_SDL && !defined REF_DLL
|
||||
#include <SDL.h>
|
||||
#endif
|
||||
|
||||
|
@ -31,7 +31,7 @@ typedef int qboolean;
|
||||
|
||||
#if _MSC_VER == 1200
|
||||
typedef __int64 integer64; //msvc6
|
||||
#elif defined (XASH_SDL)
|
||||
#elif defined (XASH_SDL) && !defined(REF_DLL)
|
||||
typedef Uint64 integer64;
|
||||
#else
|
||||
typedef unsigned long long integer64;
|
||||
|
Loading…
Reference in New Issue
Block a user