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

sdelamarre noreply at scummvm.org
Tue Sep 30 03:03:01 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:
d8911697d3 GOB: fix o7_writeUnknownChildUint16ToGameVariables opcode typo


Commit: d8911697d3cdeaaef457d1ac797a322a27808256
    https://github.com/scummvm/scummvm/commit/d8911697d3cdeaaef457d1ac797a322a27808256
Author: Benjamin Funke (bjnfne at web.de)
Date: 2025-09-30T05:02:56+02:00

Commit Message:
GOB: fix o7_writeUnknownChildUint16ToGameVariables opcode typo

Changed paths:
    engines/gob/inter.h
    engines/gob/inter_v7.cpp


diff --git a/engines/gob/inter.h b/engines/gob/inter.h
index d6331c9c770..d0ec3860759 100644
--- a/engines/gob/inter.h
+++ b/engines/gob/inter.h
@@ -798,7 +798,7 @@ protected:
 
 	void o7_writeUnknownChildDataToGameVariables(OpGobParams &params);
 	void o7_writeUnknownAppChildDataToGameVariables(OpGobParams &params);
-	void o7_writeUnknownChildUin16ToGameVariables(OpGobParams &params);
+	void o7_writeUnknownChildUint16ToGameVariables(OpGobParams &params);
 
 	void o7_startAdi4Application(OpGobParams &params);
 
diff --git a/engines/gob/inter_v7.cpp b/engines/gob/inter_v7.cpp
index c4735722ee2..76f8119ffd1 100644
--- a/engines/gob/inter_v7.cpp
+++ b/engines/gob/inter_v7.cpp
@@ -152,7 +152,7 @@ void Inter_v7::setupOpcodesFunc() {
 void Inter_v7::setupOpcodesGob() {
 	OPCODEGOB(55, o7_writeUnknownChildDataToGameVariables);
 	OPCODEGOB(64, o7_writeUnknownAppChildDataToGameVariables);
-	OPCODEGOB(74, o7_writeUnknownChildUin16ToGameVariables);
+	OPCODEGOB(74, o7_writeUnknownChildUint16ToGameVariables);
 
 	OPCODEGOB(406, o7_startAdi4Application);
 	OPCODEGOB(407, o7_xorDeobfuscate);
@@ -2097,7 +2097,7 @@ void Inter_v7::o7_writeUnknownAppChildDataToGameVariables(OpGobParams &params) {
 	}
 }
 
-void Inter_v7::o7_writeUnknownChildUin16ToGameVariables(OpGobParams &params) {
+void Inter_v7::o7_writeUnknownChildUint16ToGameVariables(OpGobParams &params) {
 	uint16 varIndex = _vm->_game->_script->readUint16();
 	if (_adi4GeneralChildData.empty())
 		return;




More information about the Scummvm-git-logs mailing list