aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb
diff options
context:
space:
mode:
authorEugene Sandulenko2019-07-24 11:49:11 +0200
committerEugene Sandulenko2019-09-03 17:17:27 +0200
commitf7713df735d185848912d156f0c8615523052d8a (patch)
treea98bb4a7ca0518ae097e602ef316f68bfcea11ba /engines/hdb
parentc131e7c8903be4e782c48736b6d9cdb82b768b87 (diff)
downloadscummvm-rg350-f7713df735d185848912d156f0c8615523052d8a.tar.gz
scummvm-rg350-f7713df735d185848912d156f0c8615523052d8a.tar.bz2
scummvm-rg350-f7713df735d185848912d156f0c8615523052d8a.zip
HDB: Fix warnings
Diffstat (limited to 'engines/hdb')
-rw-r--r--engines/hdb/sound.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/hdb/sound.h b/engines/hdb/sound.h
index 5774a67ddd..56702c0c5d 100644
--- a/engines/hdb/sound.h
+++ b/engines/hdb/sound.h
@@ -1404,8 +1404,8 @@ enum SoundType {
struct SoundLookUp {
SoundType idx;
- char *name; // name from MSD .h file
- char *luaName; // name for Lua code to use
+ const char *name; // name from MSD .h file
+ const char *luaName; // name for Lua code to use
};
class Sound {