Change a lonesome unsigned __int64 to uint64_t

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@618 4a71c877-e1ca-e34f-864e-861f7616d084
master
Dennis Schridde 2006-08-23 14:29:34 +00:00
parent 3e6bf5924c
commit bc6a921b84
1 changed files with 2 additions and 2 deletions

View File

@ -96,8 +96,8 @@ void gameTimeUpdate(void)
{
UDWORD currTime, fpMod;
#ifdef TIME_FIX
unsigned __int64 newTime;
unsigned __int64 extraTime;
uint64_t newTime;
uint64_t extraTime;
#else
unsigned long long newTime;
#endif