summaryrefslogtreecommitdiffstats
path: root/src/graphics/engine/cloud.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/graphics/engine/cloud.cpp')
-rw-r--r--src/graphics/engine/cloud.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/graphics/engine/cloud.cpp b/src/graphics/engine/cloud.cpp
index e46b074..71dd969 100644
--- a/src/graphics/engine/cloud.cpp
+++ b/src/graphics/engine/cloud.cpp
@@ -55,16 +55,14 @@ Gfx::CCloud::~CCloud()
bool Gfx::CCloud::EventProcess(const Event &event)
{
- /* TODO!
- if ( event.event == EVENT_FRAME )
- return EventFrame(event); */
+ if ( event.type == EVENT_FRAME )
+ return EventFrame(event);
return true;
}
bool Gfx::CCloud::EventFrame(const Event &event)
{
- /* TODO!
if (m_engine->GetPause()) return true;
m_time += event.rTime;
@@ -73,7 +71,7 @@ bool Gfx::CCloud::EventFrame(const Event &event)
if (m_time - m_lastTest < 0.2f) return true;
- m_lastTest = m_time; */
+ m_lastTest = m_time;
return true;
}