From def785e4620eb20cf017b19947803260604e59e4 Mon Sep 17 00:00:00 2001 From: MajorCooke Date: Mon, 2 May 2016 06:32:33 -0500 Subject: [PATCH] Removed PITCHFLATSPRITE. FLATSPRITE now encompasses its behavior. --- src/actor.h | 1 - src/namedef.h | 1 - src/thingdef/thingdef_data.cpp | 1 - 3 files changed, 3 deletions(-) diff --git a/src/actor.h b/src/actor.h index 7ef63bb94..e5fb4384e 100644 --- a/src/actor.h +++ b/src/actor.h @@ -409,7 +409,6 @@ enum ActorRenderFlag RF_WALLSPRITE = 0x1000, // Wall sprite RF_FLATSPRITE = 0x2000, // Flat sprite RF_VOXELSPRITE = 0x3000, // Voxel object - RF_PITCHFLATSPRITE = 0x4000, // [MC] Flat sprite that rotates around pitch (GZDoom only) RF_INVISIBLE = 0x8000, // Don't bother drawing this actor RF_FORCEYBILLBOARD = 0x10000, // [BB] OpenGL only: draw with y axis billboard, i.e. anchored to the floor (overrides gl_billboard_mode setting) diff --git a/src/namedef.h b/src/namedef.h index 622e5ed5f..17fa9e291 100644 --- a/src/namedef.h +++ b/src/namedef.h @@ -300,7 +300,6 @@ xx(ATan2) xx(VectorAngle) xx(Alpha) xx(Angle) -xx(FlatAngle) xx(Args) xx(CeilingZ) xx(FloorZ) diff --git a/src/thingdef/thingdef_data.cpp b/src/thingdef/thingdef_data.cpp index 8b245e828..49b6b0dd8 100644 --- a/src/thingdef/thingdef_data.cpp +++ b/src/thingdef/thingdef_data.cpp @@ -269,7 +269,6 @@ static FFlagDef ActorFlagDefs[]= // [fgsfds] Flat sprites DEFINE_FLAG(RF, FLATSPRITE, AActor, renderflags), DEFINE_FLAG(RF, WALLSPRITE, AActor, renderflags), - DEFINE_FLAG(RF, PITCHFLATSPRITE, AActor, renderflags), // Bounce flags DEFINE_FLAG2(BOUNCE_Walls, BOUNCEONWALLS, AActor, BounceFlags),