mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-22 04:01:17 +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 */
|
||||
#undef NEWSTYLE
|
||||
|
||||
#ifdef NEWSTYLE
|
||||
#define BASEGAME "base"
|
||||
#else
|
||||
#define BASEGAME "id1"
|
||||
#endif
|
||||
|
||||
/* Define this to the subdirectory name of the default game */
|
||||
#ifdef NEWSTYLE
|
||||
# define GAMENAME "base"
|
||||
|
@ -257,6 +263,17 @@
|
|||
/* Define if we've scitech MGL library and mgraph.h */
|
||||
#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
|
||||
#define atan _atan
|
||||
#define atan2 _atan2
|
||||
|
|
Loading…
Reference in a new issue