Skip to content

Commit

Permalink
ZVISION: Define all sidefx types.
Browse files Browse the repository at this point in the history
  • Loading branch information
Marisa-Chan committed Oct 30, 2013
1 parent fa74bcc commit b0f74fe
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions engines/zvision/sidefx.h
Expand Up @@ -37,8 +37,15 @@ class SideFX {
public:

enum SideFXType {
SIDEFX_UNK = 0,
SIDEFX_TIMER = 1
SIDEFX_ANIM = 1,
SIDEFX_AUDIO = 2,
SIDEFX_DISTORT = 4,
SIDEFX_PANTRACK = 8,
SIDEFX_REGION = 16,
SIDEFX_TIMER = 32,
SIDEFX_TTYTXT = 64,
SIDEFX_UNK = 128,
SIDEFX_ALL = 255
};

SideFX() : _engine(0), _key(0), _type(SIDEFX_UNK) {}
Expand Down

0 comments on commit b0f74fe

Please sign in to comment.