[Scummvm-git-logs] scummvm master -> 9e5661fcd1b44a8c99e82ea2fc4493617fa11635
AndywinXp
noreply at scummvm.org
Sat Sep 17 07:39:29 UTC 2022
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:
9e5661fcd1 SCUMM: DEBUGGER: Fix debugger being able to crash DIG at startup
Commit: 9e5661fcd1b44a8c99e82ea2fc4493617fa11635
https://github.com/scummvm/scummvm/commit/9e5661fcd1b44a8c99e82ea2fc4493617fa11635
Author: AndywinXp (andywinxp at gmail.com)
Date: 2022-09-17T09:39:19+02:00
Commit Message:
SCUMM: DEBUGGER: Fix debugger being able to crash DIG at startup
Changed paths:
engines/scumm/debugger.cpp
diff --git a/engines/scumm/debugger.cpp b/engines/scumm/debugger.cpp
index 2af1dcd64d8..fe744d8fcba 100644
--- a/engines/scumm/debugger.cpp
+++ b/engines/scumm/debugger.cpp
@@ -123,7 +123,7 @@ void ScummDebugger::postEnter() {
void ScummDebugger::onFrame() {
Debugger::onFrame();
#if defined(ENABLE_SCUMM_7_8)
- if (_vm->_imuseDigital && !_vm->_imuseDigital->isEngineDisabled()) {
+ if (_vm->_imuseDigital && !_vm->_imuseDigital->isEngineDisabled() && !_vm->isSmushActive()) {
_vm->_imuseDigital->diMUSEProcessStreams();
}
#endif
More information about the Scummvm-git-logs
mailing list