mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 06:41:59 +00:00
- Blood: fixed crash with Gargoyle projectiles.
Thanks, MSVC, for not warning about this... :(
This commit is contained in:
parent
1fbaeceada
commit
9b061f9829
1 changed files with 2 additions and 2 deletions
|
@ -5858,7 +5858,7 @@ static void actCheckThings()
|
|||
#ifdef NOONE_EXTENSIONS
|
||||
case kModernThingThrowableRock:
|
||||
seqSpawn(24, actor, -1);
|
||||
if (hit.type = kHitSprite)
|
||||
if (hit.type == kHitSprite)
|
||||
{
|
||||
pSprite->xrepeat = 32;
|
||||
pSprite->yrepeat = 32;
|
||||
|
@ -5868,7 +5868,7 @@ static void actCheckThings()
|
|||
#endif
|
||||
case kThingBone:
|
||||
seqSpawn(24, actor, -1);
|
||||
if (hit.type = kHitSprite)
|
||||
if (hit.type == kHitSprite)
|
||||
{
|
||||
actDamageSprite(actor->GetOwner(), hit.actor, kDamageFall, 12);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue