[Scummvm-git-logs] scummvm master -> a8cca5031dbecc6852e76747586c39b95e8c0f0f

athrxx noreply at scummvm.org
Sat Mar 23 21:30:56 UTC 2024


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
a8cca5031d SCUMM: (IMS) - fix regression


Commit: a8cca5031dbecc6852e76747586c39b95e8c0f0f
    https://github.com/scummvm/scummvm/commit/a8cca5031dbecc6852e76747586c39b95e8c0f0f
Author: athrxx (athrxx at scummvm.org)
Date: 2024-03-23T22:30:48+01:00

Commit Message:
SCUMM: (IMS) - fix regression

Changed paths:
    engines/scumm/imuse/imuse.cpp


diff --git a/engines/scumm/imuse/imuse.cpp b/engines/scumm/imuse/imuse.cpp
index b801ba6b561..c20cde745d7 100644
--- a/engines/scumm/imuse/imuse.cpp
+++ b/engines/scumm/imuse/imuse.cpp
@@ -46,7 +46,7 @@ namespace Scumm {
 IMuseInternal::IMuseInternal(ScummEngine *vm, MidiDriverFlags sndType, bool nativeMT32) :
 	_native_mt32(nativeMT32),
 	_newSystem(vm->_game.id == GID_SAMNMAX),
-	_dynamicChanAllocation(vm->_game.id == GID_SAMNMAX || vm->_game.id == GID_TENTACLE),
+	_dynamicChanAllocation(vm->_game.id != GID_MONKEY2 && vm->_game.id != GID_INDY4), // For the non-iMuse games that (unfortunately) run on this player we need to pretend we're on the more modern version
 	_midi_adlib(nullptr),
 	_midi_native(nullptr),
 	_sysex(nullptr),




More information about the Scummvm-git-logs mailing list