This commit is contained in:
arezey 2015-04-12 02:16:34 +03:00
commit e40f3c7350
19 changed files with 244 additions and 92 deletions

View file

@ -894,5 +894,5 @@ void ACustomSprite::BeginPlay ()
if (cstat & 8)
renderflags |= RF_YFLIP;
// set face/wall/floor flags
renderflags |= ((cstat >> 4) & 3) << 12;
renderflags |= ActorRenderFlags::FromInt (((cstat >> 4) & 3) << 12);
}