aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/Base/BFader.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wintermute/Base/BFader.h')
-rw-r--r--engines/wintermute/Base/BFader.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/wintermute/Base/BFader.h b/engines/wintermute/Base/BFader.h
index 623bd220bc..8c9d7d0a7c 100644
--- a/engines/wintermute/Base/BFader.h
+++ b/engines/wintermute/Base/BFader.h
@@ -38,11 +38,11 @@ class CBFader : public CBObject {
public:
bool _system;
uint32 getCurrentColor();
- ERRORCODE fadeOut(uint32 targetColor, uint32 duration, bool system = false);
- ERRORCODE fadeIn(uint32 sourceColor, uint32 duration, bool system = false);
- ERRORCODE deactivate();
- ERRORCODE display();
- ERRORCODE update();
+ bool fadeOut(uint32 targetColor, uint32 duration, bool system = false);
+ bool fadeIn(uint32 sourceColor, uint32 duration, bool system = false);
+ bool deactivate();
+ bool display();
+ bool update();
DECLARE_PERSISTENT(CBFader, CBObject)
CBFader(CBGame *inGame);
virtual ~CBFader();