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

bluegr noreply at scummvm.org
Sat May 18 21:13:23 UTC 2024


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

Summary:
a6c3ea5309 GOB: fix indentation for Playtoons non interactive demo
29cd4daf85 GOB: fix DEV7 version for Addy 5 entry
66fb942aa1 GOB: add pierresmagiques to POTFILE
f7f61d483c GOB: mention usage of memory hack in Adi 4
a2969600dd GOB: fix typo in POTFILES


Commit: a6c3ea53096d04c326c0070ed00afb71dadab40d
    https://github.com/scummvm/scummvm/commit/a6c3ea53096d04c326c0070ed00afb71dadab40d
Author: Benjamin Funke (bjnfne at web.de)
Date: 2024-05-19T00:13:18+03:00

Commit Message:
GOB: fix indentation for Playtoons non interactive demo

Changed paths:
    engines/gob/detection/tables_playtoons.h


diff --git a/engines/gob/detection/tables_playtoons.h b/engines/gob/detection/tables_playtoons.h
index 84bff49d66a..2d59750a334 100644
--- a/engines/gob/detection/tables_playtoons.h
+++ b/engines/gob/detection/tables_playtoons.h
@@ -149,9 +149,9 @@
 		"Non-Interactive Demo",
 		AD_ENTRY5s("s.scn",	"1f527010626b5490761f16ba7a6f639a", 251,
 				   "demaresp.vmd", "3f860f944056842b35a5fd05416f208e", 5720619,
-                    "demboues.vmd", "3a0caa10c98ef92a15942f8274075b43", 3535838,
-                    "demo5.vmd", "2abb7b6a26406c984f389f0b24b5e28e", 13290970,
-                    "wooddem3.vmd", "a1700596172c2d4e264760030c3a3d47", 8994250),
+                   "demboues.vmd", "3a0caa10c98ef92a15942f8274075b43", 3535838,
+                   "demo5.vmd", "2abb7b6a26406c984f389f0b24b5e28e", 13290970,
+                   "wooddem3.vmd", "a1700596172c2d4e264760030c3a3d47", 8994250),
 		ES_ESP,
 		kPlatformWindows,
 		ADGF_DEMO,


Commit: 29cd4daf8506f57b567fa8f907204055a53209f2
    https://github.com/scummvm/scummvm/commit/29cd4daf8506f57b567fa8f907204055a53209f2
Author: Benjamin Funke (bjnfne at web.de)
Date: 2024-05-19T00:13:18+03:00

Commit Message:
GOB: fix DEV7 version for Addy 5 entry

Changed paths:
    engines/gob/detection/tables_adi5.h


diff --git a/engines/gob/detection/tables_adi5.h b/engines/gob/detection/tables_adi5.h
index 754709df78f..656d9cdd0c8 100644
--- a/engines/gob/detection/tables_adi5.h
+++ b/engines/gob/detection/tables_adi5.h
@@ -69,7 +69,7 @@
 	{
 
 		"adi5",
-		_s("Missing game code"), // Addy 5 5.01 (Engine: DEV7 version 1.1.0.0)
+		_s("Missing game code"), // Addy 5 5.01 (Engine: DEV7 version unknown)
 		AD_ENTRY1s("adi5.stk", "ec2d6a05d13bec1b4dcfa18d88e317c6", 627942),
 		DE_DEU,
 		kPlatformWindows,


Commit: 66fb942aa1f8a4b10f723e6798ce61657af74e16
    https://github.com/scummvm/scummvm/commit/66fb942aa1f8a4b10f723e6798ce61657af74e16
Author: Benjamin Funke (bjnfne at web.de)
Date: 2024-05-19T00:13:18+03:00

Commit Message:
GOB: add pierresmagiques to POTFILE

Changed paths:
    engines/gob/POTFILES


diff --git a/engines/gob/POTFILES b/engines/gob/POTFILES
index 842086bfa02..c76ff7bf039 100644
--- a/engines/gob/POTFILES
+++ b/engines/gob/POTFILES
@@ -7,3 +7,4 @@ engines/gob/detection/tables_adi5.h
 engines/gob/detection/tables_adibou3.h
 engines/gob/detection/tables_adiboupresente.h
 engines/gob/detection/tables_adiboudchou.h
+engines/gob/detection/tabes_pierresmagiques.h


Commit: f7f61d483c133d9b810004853ef35ad896103293
    https://github.com/scummvm/scummvm/commit/f7f61d483c133d9b810004853ef35ad896103293
Author: Benjamin Funke (bjnfne at web.de)
Date: 2024-05-19T00:13:18+03:00

Commit Message:
GOB: mention usage of memory hack in Adi 4

Changed paths:
    engines/gob/inter_v7.cpp


diff --git a/engines/gob/inter_v7.cpp b/engines/gob/inter_v7.cpp
index 9b4423690bd..c960704ad7d 100644
--- a/engines/gob/inter_v7.cpp
+++ b/engines/gob/inter_v7.cpp
@@ -1233,7 +1233,7 @@ void Inter_v7::o7_getFreeMem(OpFuncParams &params) {
 	uint16 maxFreeVar = _vm->_game->_script->readVarIndex();
 
 	// HACK, with a higher value than o2_getFreeMem (16M vs 1M)
-	// This unlocks a nicer intro music in Adibou2
+	// This unlocks a nicer intro music in Adibou2/Adi4
 	WRITE_VAR_OFFSET(freeVar   , 16000000);
 	WRITE_VAR_OFFSET(maxFreeVar, 16000000);
 	WRITE_VAR(16, _vm->_game->_script->getVariablesCount() * 4);


Commit: a2969600dda6af173b585085c868333575a865a3
    https://github.com/scummvm/scummvm/commit/a2969600dda6af173b585085c868333575a865a3
Author: Benjamin Funke (58399929+BJNFNE at users.noreply.github.com)
Date: 2024-05-19T00:13:18+03:00

Commit Message:
GOB: fix typo in POTFILES

* fixes the typo for the header file of pierresmagiques

Co-authored-by: Eugene Sandulenko <sev at scummvm.org>

Changed paths:
    engines/gob/POTFILES


diff --git a/engines/gob/POTFILES b/engines/gob/POTFILES
index c76ff7bf039..f1fd036befc 100644
--- a/engines/gob/POTFILES
+++ b/engines/gob/POTFILES
@@ -7,4 +7,4 @@ engines/gob/detection/tables_adi5.h
 engines/gob/detection/tables_adibou3.h
 engines/gob/detection/tables_adiboupresente.h
 engines/gob/detection/tables_adiboudchou.h
-engines/gob/detection/tabes_pierresmagiques.h
+engines/gob/detection/tables_pierresmagiques.h




More information about the Scummvm-git-logs mailing list