diff options
author | Treeki <treeki@gmail.com> | 2012-09-16 04:59:03 +0200 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2012-09-16 04:59:03 +0200 |
commit | 7404c596e96bf18f458f10fb8f23ca6e1a25ca7d (patch) | |
tree | 4fcdf733873a6d74b13a986c98b6f845dd0ad3ca /src/effectvideo.cpp | |
parent | 8102791c2222c31d80858cd1d12b208dcd4ecbc3 (diff) | |
download | kamek-7404c596e96bf18f458f10fb8f23ca6e1a25ca7d.tar.gz kamek-7404c596e96bf18f458f10fb8f23ca6e1a25ca7d.zip |
go speed! a terrible hack to make builds far faster
Diffstat (limited to '')
-rw-r--r-- | src/effectvideo.cpp | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/effectvideo.cpp b/src/effectvideo.cpp index d690263..24089ef 100644 --- a/src/effectvideo.cpp +++ b/src/effectvideo.cpp @@ -4,7 +4,6 @@ #include <sfx.h> -extern "C" void *PlaySoundAsync(dEn_c *, int soundID); extern "C" bool SpawnEffect(const char*, int, Vec*, S16Vec*, Vec*); @@ -25,12 +24,6 @@ class EffectVideo : public dEn_c { }; -struct EventTable_t { - u64 events; -}; - -extern EventTable_t *EventTable; - EffectVideo *EffectVideo::build() { void *buffer = AllocFromGameHeap1(sizeof(EffectVideo)); @@ -65,7 +58,7 @@ int EffectVideo::onDelete() { int EffectVideo::onExecute() { - if (EventTable->events & this->eventFlag) { + if (dFlagMgr_c::instance->flags & this->eventFlag) { if (this->timer == this->delay) { |