aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/base/base_dynamic_buffer.h
diff options
context:
space:
mode:
authorEinar Johan Trøan Sømåen2012-08-31 14:01:18 +0200
committerEinar Johan Trøan Sømåen2012-08-31 14:01:18 +0200
commit2039ea6b8df36c960ff25ae56930357d40e95d1d (patch)
treef4e6f5737f6ca3880584a47554c574f11035ee98 /engines/wintermute/base/base_dynamic_buffer.h
parent16b27090b1c7dc11cdc199b1a98c0f2973db5f45 (diff)
downloadscummvm-rg350-2039ea6b8df36c960ff25ae56930357d40e95d1d.tar.gz
scummvm-rg350-2039ea6b8df36c960ff25ae56930357d40e95d1d.tar.bz2
scummvm-rg350-2039ea6b8df36c960ff25ae56930357d40e95d1d.zip
WINTERMUTE: Fix g++ warnings listed by LordHoto
Diffstat (limited to 'engines/wintermute/base/base_dynamic_buffer.h')
-rw-r--r--engines/wintermute/base/base_dynamic_buffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/wintermute/base/base_dynamic_buffer.h b/engines/wintermute/base/base_dynamic_buffer.h
index 8285b472b2..926728baa6 100644
--- a/engines/wintermute/base/base_dynamic_buffer.h
+++ b/engines/wintermute/base/base_dynamic_buffer.h
@@ -44,7 +44,7 @@ public:
char *getString();
void putString(const char *val);
bool getBytes(byte *buffer, uint32 size);
- bool putBytes(byte *buffer, uint32 size);
+ bool putBytes(const byte *buffer, uint32 size);
uint32 getSize();
bool init(uint32 initSize = 0);
void cleanup();