[Scummvm-git-logs] scummvm master -> 70bcd400be322d638b28ce411f1755a1f3f37e17

elasota noreply at scummvm.org
Wed Sep 4 23:37:21 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:
70bcd400be MTROPOLIS: Fix stack overflow


Commit: 70bcd400be322d638b28ce411f1755a1f3f37e17
    https://github.com/scummvm/scummvm/commit/70bcd400be322d638b28ce411f1755a1f3f37e17
Author: elasota (1137273+elasota at users.noreply.github.com)
Date: 2024-09-04T19:36:06-04:00

Commit Message:
MTROPOLIS: Fix stack overflow

Changed paths:
    engines/mtropolis/runtime.cpp


diff --git a/engines/mtropolis/runtime.cpp b/engines/mtropolis/runtime.cpp
index df8ac7cae34..52003cf28ca 100644
--- a/engines/mtropolis/runtime.cpp
+++ b/engines/mtropolis/runtime.cpp
@@ -3629,7 +3629,7 @@ bool Structural::readAttributeIndexed(MiniscriptThread *thread, DynamicValue &re
 		return true;
 	}
 
-	return Structural::readAttributeIndexed(thread, result, attrib, index);
+	return RuntimeObject::readAttributeIndexed(thread, result, attrib, index);
 }
 
 




More information about the Scummvm-git-logs mailing list