[Scummvm-git-logs] scummvm master -> 2ef9ba7d6a749a9586b22fb91ea013a795facb13

mistydemeo noreply at scummvm.org
Wed May 31 21:47:16 UTC 2023


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

Summary:
34dcb43a4f DEVTOOLS: correct typo leading to dupe definitions
2ef9ba7d6a DIRECTOR: add full rolypolys2


Commit: 34dcb43a4f712423ea608ea0197addbf10210aa7
    https://github.com/scummvm/scummvm/commit/34dcb43a4f712423ea608ea0197addbf10210aa7
Author: Misty De Meo (mistydemeo at gmail.com)
Date: 2023-05-31T14:40:21-07:00

Commit Message:
DEVTOOLS: correct typo leading to dupe definitions

This was introduced by ce6a9d8e8ec78218a6b3d68e955b48026d610550. That
commit accidentally placed the second definition on parser_iso instead
of parser_macbinary, leading argparse to raise an error at runtime.

Changed paths:
    devtools/dumper-companion.py


diff --git a/devtools/dumper-companion.py b/devtools/dumper-companion.py
index 11c04cec660..0baf53b8f4e 100755
--- a/devtools/dumper-companion.py
+++ b/devtools/dumper-companion.py
@@ -788,7 +788,7 @@ def generate_parser() -> argparse.ArgumentParser:
             help="always encode using MacBinary, even for files with no resource fork",
             default=False,
         )
-        parser_iso.add_argument(
+        parser_macbinary.add_argument(
             "--addmacbinaryext",
             action="store_true",
             help="add .bin extension when using MacBinary",


Commit: 2ef9ba7d6a749a9586b22fb91ea013a795facb13
    https://github.com/scummvm/scummvm/commit/2ef9ba7d6a749a9586b22fb91ea013a795facb13
Author: Misty De Meo (mistydemeo at gmail.com)
Date: 2023-05-31T14:47:04-07:00

Commit Message:
DIRECTOR: add full rolypolys2

Changed paths:
    engines/director/detection_tables.h


diff --git a/engines/director/detection_tables.h b/engines/director/detection_tables.h
index 344bee1fe4c..af50a6dd7f5 100644
--- a/engines/director/detection_tables.h
+++ b/engines/director/detection_tables.h
@@ -6497,6 +6497,10 @@ static const DirectorGameDescription gameDescriptions[] = {
 	WINGAME1t_l("rolypolys", "",	 "KOTOWZ32.EXE", "b2afd5fd125c07052c26a9210d1fbd69", 1411360, Common::JA_JPN, 501),
 	WINDEMO1t_l("rolypolys2", "Demo", "DEMO32.EXE",	 "a08e306c9beca27115c25f934f89dbda", 1411230, Common::JA_JPN, 501),
 	MACDEMO1_l("rolypolys2", "Banabana 1-go Demo", "xn--1-jguha2ab3kr732a", "1da813df08575abf9f94ec1151852005", 719664, Common::JA_JPN, 501),
+	MACGAME1t_l("rolypolys2", "", "xn--1-oguawb0115c", "e017d8408acb387c53add0be7f2733fc", 721947, Common::JA_JPN, 501),
+	// Decomposed variant of the above
+	MACGAME1t_l("rolypolys2", "", "xn--1-vdua9qb0ac7113e", "e017d8408acb387c53add0be7f2733fc", 721947, Common::JA_JPN, 501),
+	WINGAME1t_l("rolypolys2", "", "WINSTART/RP2.EXE", "7a37411203e932ab057ea73481354941", 1410466, Common::JA_JPN, 501),
 
 	// Original Mac filename is ロンロン
 	// Original Win filename is ロンロン.EXE




More information about the Scummvm-git-logs mailing list