aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/Base/BDynBuffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wintermute/Base/BDynBuffer.h')
-rw-r--r--engines/wintermute/Base/BDynBuffer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/wintermute/Base/BDynBuffer.h b/engines/wintermute/Base/BDynBuffer.h
index 1826a81c30..6df01903c7 100644
--- a/engines/wintermute/Base/BDynBuffer.h
+++ b/engines/wintermute/Base/BDynBuffer.h
@@ -43,10 +43,10 @@ public:
void putDWORD(uint32 val);
char *getString();
void putString(const char *val);
- ERRORCODE getBytes(byte *buffer, uint32 size);
- ERRORCODE putBytes(byte *buffer, uint32 size);
+ bool getBytes(byte *buffer, uint32 size);
+ bool putBytes(byte *buffer, uint32 size);
uint32 getSize();
- ERRORCODE init(uint32 initSize = 0);
+ bool init(uint32 initSize = 0);
void cleanup();
uint32 _size;
byte *_buffer;