[Scummvm-git-logs] scummvm master -> 0d52f4dd7c1fc250cdbebef7bd531ddf641e7965
sev-
noreply at scummvm.org
Sat Sep 13 20:26:04 UTC 2025
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
0d52f4dd7c DIRECTOR: Add stub for ediM resource loading
Commit: 0d52f4dd7c1fc250cdbebef7bd531ddf641e7965
https://github.com/scummvm/scummvm/commit/0d52f4dd7c1fc250cdbebef7bd531ddf641e7965
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2025-09-13T22:25:50+02:00
Commit Message:
DIRECTOR: Add stub for ediM resource loading
Changed paths:
engines/director/castmember/sound.cpp
diff --git a/engines/director/castmember/sound.cpp b/engines/director/castmember/sound.cpp
index 0a9c648ff86..251bcca96af 100644
--- a/engines/director/castmember/sound.cpp
+++ b/engines/director/castmember/sound.cpp
@@ -98,6 +98,10 @@ void SoundCastMember::load() {
sndFormat = new MoaSoundFormatDecoder();
sndFormat->loadSampleStream(*sndData);
delete sndData;
+ } else if (it.tag == MKTAG('e', 'd', 'i', 'M')) {
+ Common::SeekableReadStreamEndian *sndData = _cast->getResource(it.tag, it.index);
+ warning("SoundCastMember::load(): STUB: ediM resource in sound cast member %d", _castId);
+ delete sndData;
}
}
More information about the Scummvm-git-logs
mailing list