diff options
Diffstat (limited to 'src/effectmanager.cpp')
-rw-r--r-- | src/effectmanager.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/effectmanager.cpp b/src/effectmanager.cpp index 8cc987e6e..d72824822 100644 --- a/src/effectmanager.cpp +++ b/src/effectmanager.cpp @@ -86,6 +86,7 @@ bool EffectManager::trigger(const int id, Being *const being, if (!being || !particleEngine) return false; + BLOCK_START("EffectManager::trigger") bool rValue = false; FOR_EACH (std::vector<EffectDescription>::const_iterator, i, mEffects) { @@ -106,6 +107,7 @@ bool EffectManager::trigger(const int id, Being *const being, break; } } + BLOCK_END("EffectManager::trigger") return rValue; } |