mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-03-24 08:51:58 +00:00
Some extern and borland build fixes.
This commit is contained in:
parent
40b2640b33
commit
1a4043711e
2 changed files with 8 additions and 2 deletions
|
@ -145,8 +145,14 @@ void MSG_ReadDeltaUsercmd (struct usercmd_s *from, struct usercmd_s *cmd);
|
|||
|
||||
#ifdef _WIN32
|
||||
|
||||
#ifdef __BORLANDC__
|
||||
#define Q_strcasecmp(s1, s2) stricmp((s1), (s2))
|
||||
#define Q_strncasecmp(s1, s2, n) strnicmp((s1), (s2), (n))
|
||||
|
||||
#else
|
||||
#define Q_strcasecmp(s1, s2) _stricmp((s1), (s2))
|
||||
#define Q_strncasecmp(s1, s2, n) _strnicmp((s1), (s2), (n))
|
||||
#endif
|
||||
|
||||
#else
|
||||
|
||||
|
|
|
@ -66,8 +66,8 @@ extern float d_sdivzstepu, d_tdivzstepu, d_zistepu;
|
|||
extern float d_sdivzstepv, d_tdivzstepv, d_zistepv;
|
||||
extern float d_sdivzorigin, d_tdivzorigin, d_ziorigin;
|
||||
|
||||
fixed16_t sadjust, tadjust;
|
||||
fixed16_t bbextents, bbextentt;
|
||||
extern fixed16_t sadjust, tadjust;
|
||||
extern fixed16_t bbextents, bbextentt;
|
||||
|
||||
|
||||
void D_DrawSpans8 (espan_t *pspans);
|
||||
|
|
Loading…
Reference in a new issue