diff options
author | Eugene Sandulenko | 2019-07-24 11:49:11 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2019-09-03 17:17:27 +0200 |
commit | f7713df735d185848912d156f0c8615523052d8a (patch) | |
tree | a98bb4a7ca0518ae097e602ef316f68bfcea11ba | |
parent | c131e7c8903be4e782c48736b6d9cdb82b768b87 (diff) | |
download | scummvm-rg350-f7713df735d185848912d156f0c8615523052d8a.tar.gz scummvm-rg350-f7713df735d185848912d156f0c8615523052d8a.tar.bz2 scummvm-rg350-f7713df735d185848912d156f0c8615523052d8a.zip |
HDB: Fix warnings
-rw-r--r-- | engines/hdb/sound.h | 4 |
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 { |