aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb/sound.h
diff options
context:
space:
mode:
authorEugene Sandulenko2019-09-03 21:07:51 +0200
committerEugene Sandulenko2019-09-03 21:08:13 +0200
commita7e30d0e7f62aad9aceadd674f1b51146f20958d (patch)
treef9d34dbf466428dd456c19b4371a85695c1410d7 /engines/hdb/sound.h
parent8ec8b5fc7d60df0f57883dd819d3db0f6626d8d2 (diff)
downloadscummvm-rg350-a7e30d0e7f62aad9aceadd674f1b51146f20958d.tar.gz
scummvm-rg350-a7e30d0e7f62aad9aceadd674f1b51146f20958d.tar.bz2
scummvm-rg350-a7e30d0e7f62aad9aceadd674f1b51146f20958d.zip
HDB: Fix compilation on Amiga
Diffstat (limited to 'engines/hdb/sound.h')
-rw-r--r--engines/hdb/sound.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/hdb/sound.h b/engines/hdb/sound.h
index 4d2e6eea86..d49b522487 100644
--- a/engines/hdb/sound.h
+++ b/engines/hdb/sound.h
@@ -1446,11 +1446,11 @@ enum SndType {
};
struct SoundCache {
- SndMem loaded; // -1 = freeable; in memory, 0 = not cached, 1 = cached
- int32 size; // size of sound
- const char *name; // filename / MSD name
- const char *luaName; // name used by Lua for i.d.
- SndType ext; // 0 = Uninitialized, -1 = WAV, 1 = MP3
+ SndMem loaded; // -1 = freeable; in memory, 0 = not cached, 1 = cached
+ int size; // size of sound
+ const char *name; // filename / MSD name
+ const char *luaName; // name used by Lua for i.d.
+ SndType ext; // 0 = Uninitialized, -1 = WAV, 1 = MP3
byte *data;
SoundCache() : loaded(SNDMEM_NOTCACHED), size(0), name(nullptr), luaName(nullptr), ext(SNDTYPE_NONE), data(nullptr) {}