- removed the string assignment operators.

These all caught literal 0's as well
This commit is contained in:
Christoph Oelckers 2022-11-24 15:52:02 +01:00
commit b89c4affae
9 changed files with 17 additions and 27 deletions

View file

@ -3489,7 +3489,7 @@ bool FSlide::BounceWall(AActor *mo)
if (line->special == Line_Horizon || ((mo->BounceFlags & BOUNCE_NotOnSky) && line->hitSkyWall(mo)))
{
mo->SeeSound = mo->BounceSound = 0; // it might make a sound otherwise
mo->SeeSound = mo->BounceSound = NO_SOUND; // it might make a sound otherwise
mo->Destroy();
return true;
}