tr_shader.cpp: amend previous commit for x86

With the last modification in the structure, the building failure was fixed just for x86_64 machines.
Promoting long int to long long (int) fixes the failure for both x86 and x86_64 machines.

Tested with Clang and GCC 8.

Signed-off-by: Francesco Giancane <francescogiancane8@gmail.com>
This commit is contained in:
Francesco Giancane 2018-06-01 22:14:25 +02:00
parent dfb5ee4ed4
commit 160e009dbd

View file

@ -1854,7 +1854,7 @@ void ParseSort( const char **text )
typedef struct {
char *name;
long int clearSolid, surfaceFlags, contents;
long long clearSolid, surfaceFlags, contents;
} infoParm_t;