14 |
|
#define isnan(x) ((x) != (x)) |
15 |
|
|
16 |
|
uint32_t last1 = 0; uint32_t last2 = 0; |
17 |
< |
player_info Players[MAX_PLAYERS] = {{0}, {0}, {0}, {0}}; |
17 |
> |
player_info Players[MAX_PLAYERS]; |
18 |
|
player_info * PlayerList[MAX_CONNECTIONS] = {0}; |
19 |
|
multiplayer_status MultiplayerStatus; |
20 |
|
unsigned int lastPingTime; |
32 |
|
|
33 |
|
|
34 |
|
|
35 |
< |
short TRrAnimation_GetType(char* anim) |
35 |
> |
short TRrAnimation_GetType(const void* anim) |
36 |
|
{ |
37 |
|
return *(short*)(anim + 0x15A); |
38 |
|
} |
41 |
|
short inFromState, short inNextAnimType, const void *TRAM) |
42 |
|
{ |
43 |
|
ONCC *ONCC = Char->ONCC; |
44 |
< |
void *TRAC = ONCC->TRAC; |
44 |
> |
void *TRAC = (void*)ONCC->TRAC; |
45 |
|
short index = Char->Number; |
46 |
|
short animType; |
47 |
|
|