summaryrefslogtreecommitdiffstats
path: root/src/object/task/taskwait.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/object/task/taskwait.h')
-rw-r--r--src/object/task/taskwait.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/object/task/taskwait.h b/src/object/task/taskwait.h
index 7a33f49..25e8e67 100644
--- a/src/object/task/taskwait.h
+++ b/src/object/task/taskwait.h
@@ -35,7 +35,7 @@ public:
CTaskWait(CInstanceManager* iMan, CObject* object);
~CTaskWait();
- BOOL EventProcess(const Event &event);
+ bool EventProcess(const Event &event);
Error Start(float time);
Error IsEnded();
@@ -45,6 +45,6 @@ protected:
protected:
float m_waitTime;
float m_passTime;
- BOOL m_bEnded;
+ bool m_bEnded;
};