aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/Base/font/BFontStorage.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wintermute/Base/font/BFontStorage.h')
-rw-r--r--engines/wintermute/Base/font/BFontStorage.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/wintermute/Base/font/BFontStorage.h b/engines/wintermute/Base/font/BFontStorage.h
index 33a1bb056f..4f360c84c5 100644
--- a/engines/wintermute/Base/font/BFontStorage.h
+++ b/engines/wintermute/Base/font/BFontStorage.h
@@ -41,13 +41,13 @@ class CBFont;
class CBFontStorage : public CBBase {
public:
DECLARE_PERSISTENT(CBFontStorage, CBBase)
- ERRORCODE cleanup(bool warn = false);
- ERRORCODE removeFont(CBFont *font);
+ bool cleanup(bool warn = false);
+ bool removeFont(CBFont *font);
CBFont *addFont(const char *filename);
CBFontStorage(CBGame *inGame);
virtual ~CBFontStorage();
CBArray<CBFont *, CBFont *> _fonts;
- ERRORCODE initLoop();
+ bool initLoop();
};
} // end of namespace WinterMute