mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-25 13:32:01 +00:00
Config changes for bc win32
This commit is contained in:
parent
7f245155ce
commit
06ae81fd30
1 changed files with 17 additions and 0 deletions
|
@ -70,6 +70,12 @@
|
||||||
/* Define if you want to use QF-style defaults instead of Id-style */
|
/* Define if you want to use QF-style defaults instead of Id-style */
|
||||||
#undef NEWSTYLE
|
#undef NEWSTYLE
|
||||||
|
|
||||||
|
#ifdef NEWSTYLE
|
||||||
|
#define BASEGAME "base"
|
||||||
|
#else
|
||||||
|
#define BASEGAME "id1"
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Define this to the subdirectory name of the default game */
|
/* Define this to the subdirectory name of the default game */
|
||||||
#ifdef NEWSTYLE
|
#ifdef NEWSTYLE
|
||||||
# define GAMENAME "base"
|
# define GAMENAME "base"
|
||||||
|
@ -257,6 +263,17 @@
|
||||||
/* Define if we've scitech MGL library and mgraph.h */
|
/* Define if we've scitech MGL library and mgraph.h */
|
||||||
#define HAVE_MGRAPH_H 1
|
#define HAVE_MGRAPH_H 1
|
||||||
|
|
||||||
|
/* Dir used for shared game data */
|
||||||
|
#define FS_SHAREPATH "."
|
||||||
|
|
||||||
|
/* Dir used for shared game data */
|
||||||
|
#define FS_USERPATH "."
|
||||||
|
|
||||||
|
#define FS_GLOBALCFG ".\\qforge.cfg"
|
||||||
|
|
||||||
|
#define strcasecmp(s1, s2) stricmp((s1), (s2))
|
||||||
|
#define strncasecmp(s1, s2, n) strnicmp((s1), (s2), (n))
|
||||||
|
|
||||||
#ifdef HAVE_3DNOW_ASM
|
#ifdef HAVE_3DNOW_ASM
|
||||||
#define atan _atan
|
#define atan _atan
|
||||||
#define atan2 _atan2
|
#define atan2 _atan2
|
||||||
|
|
Loading…
Reference in a new issue