aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scumm/scumm.cpp2
-rw-r--r--scumm/sound.cpp3
2 files changed, 4 insertions, 1 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp
index 9ac888760f..5cc818b037 100644
--- a/scumm/scumm.cpp
+++ b/scumm/scumm.cpp
@@ -465,6 +465,8 @@ static const ScummGameSettings multiple_versions_md5_settings[] = {
{"7f45ddd6dbfbf8f80c0c0efea4c295bc", "Maniac Mansion (v1)", GID_MANIAC, 1, 0, 25, MDT_PCSPK,
GF_SMALL_HEADER | GF_USE_KEY | GF_16COLOR | GF_OLD_BUNDLE | GF_NO_SCALING, Common::kPlatformUnknown, 0, 0},
+ {"ef71a322b6530ac45b1a070f7c0795f7", "Moonbase Commander (Demo)", GID_HEGAME, 6, 100, 62, MDT_NONE,
+ GF_USE_KEY | GF_NEW_COSTUMES | GF_HE_LOCALIZED, Common::kPlatformUnknown, 0, 0},
{"37aed3f91c1ef959e0bd265f9b13781f", "Pajama Sam: No Need To Hide When It's Dark Outside (Updated)", GID_HEGAME, 6, 100, 61, MDT_NONE,
GF_USE_KEY | GF_NEW_COSTUMES, Common::kPlatformUnknown, 0, 0}, // PajamaNHD
diff --git a/scumm/sound.cpp b/scumm/sound.cpp
index 8226c204d7..e759b52275 100644
--- a/scumm/sound.cpp
+++ b/scumm/sound.cpp
@@ -294,7 +294,8 @@ void Sound::playSound(int soundID, int heOffset, int heChannel, int heFlags) {
Common::MemoryReadStream stream(ptr, size);
if (!loadWAVFromStream(stream, size, rate, flags)) {
- error("playSound: Not a valid WAV file");
+ warning("playSound: IMA ADPCM compression not supported");
+ return;
}
// Allocate a sound buffer, copy the data into it, and play