mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-04-22 10:10:49 +00:00
Change out the hex used for hnext/hprev consistancy
This commit is contained in:
parent
e758e0f8fd
commit
67dd962fb9
1 changed files with 2 additions and 2 deletions
|
@ -4449,7 +4449,7 @@ static INT16 Consistancy(void)
|
|||
ret += mo->hnext->frame;
|
||||
}
|
||||
else
|
||||
ret ^= 0x3333;
|
||||
ret ^= 0x5555;
|
||||
if (mo->hprev)
|
||||
{
|
||||
ret += mo->hprev->type;
|
||||
|
@ -4469,7 +4469,7 @@ static INT16 Consistancy(void)
|
|||
ret += mo->hprev->frame;
|
||||
}
|
||||
else
|
||||
ret ^= 0xAAAA;
|
||||
ret ^= 0xCCCC;
|
||||
ret -= mo->state - states;
|
||||
ret += mo->tics;
|
||||
ret -= mo->sprite;
|
||||
|
|
Loading…
Reference in a new issue