aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/Base/BTransitionMgr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wintermute/Base/BTransitionMgr.cpp')
-rw-r--r--engines/wintermute/Base/BTransitionMgr.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/wintermute/Base/BTransitionMgr.cpp b/engines/wintermute/Base/BTransitionMgr.cpp
index 537fb0f2f5..81d80c40aa 100644
--- a/engines/wintermute/Base/BTransitionMgr.cpp
+++ b/engines/wintermute/Base/BTransitionMgr.cpp
@@ -58,7 +58,7 @@ bool CBTransitionMgr::isReady() {
//////////////////////////////////////////////////////////////////////////
-ERRORCODE CBTransitionMgr::start(TTransitionType type, bool nonInteractive) {
+bool CBTransitionMgr::start(TTransitionType type, bool nonInteractive) {
if (_state != TRANS_MGR_READY) return STATUS_OK;
if (type == TRANSITION_NONE || type >= NUM_TRANSITION_TYPES) {
@@ -83,7 +83,7 @@ ERRORCODE CBTransitionMgr::start(TTransitionType type, bool nonInteractive) {
#define FADE_DURATION 200
//////////////////////////////////////////////////////////////////////////
-ERRORCODE CBTransitionMgr::update() {
+bool CBTransitionMgr::update() {
if (isReady()) return STATUS_OK;
if (!_started) {