mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-22 12:11:34 +00:00
Borland C++ uses __int64 too.
This commit is contained in:
parent
54648f9a93
commit
298f23f2c7
1 changed files with 1 additions and 1 deletions
|
@ -143,7 +143,7 @@ void R_AddDynamicLights (msurface_t *surf)
|
|||
float dist, f;
|
||||
vec3_t impact, local;
|
||||
// use 64bit integer... shame it's not very standardized...
|
||||
#if _MSC_VER
|
||||
#if _MSC_VER || __BORLANDC__
|
||||
__int64 k;
|
||||
#else
|
||||
long long k;
|
||||
|
|
Loading…
Reference in a new issue