Removed the RF_PLACARD flag. Also, simplified sfPlaceActor and removed a non needed check

svn-id: r28901
This commit is contained in:
Filippos Karapetis 2007-09-14 12:42:47 +00:00
parent 5f1232a744
commit c84ff65720
7 changed files with 25 additions and 55 deletions

View file

@ -39,11 +39,10 @@ enum RENDER_FLAGS {
RF_OBJECTMAP_TEST = (1 << 3),
RF_RENDERPAUSE = (1 << 4),
RF_GAMEPAUSE = (1 << 5),
RF_PLACARD = (1 << 6),
RF_ACTOR_PATH_TEST = (1 << 7),
RF_MAP = (1 << 8),
RF_DISABLE_ACTORS = (1 << 9),
RF_DEMO_SUBST = (1 << 10)
RF_ACTOR_PATH_TEST = (1 << 6),
RF_MAP = (1 << 7),
RF_DISABLE_ACTORS = (1 << 8),
RF_DEMO_SUBST = (1 << 9)
};
class Render {