[Scummvm-git-logs] scummvm master -> 74c855d89d69db207ed28e6a1622b4835e2e085f
tag2015
noreply at scummvm.org
Mon Nov 28 18:44:20 UTC 2022
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:
3e94df8334 MOHAWK: LB: Minor title fixes in detection
15fd200635 TINSEL: Change "2" to "II" in DW2 title
851ac635b7 SUPERNOVA: Complete gametitles in detection
4bd921bff1 NIPPON: Add comma in title to match common naming
74c855d89d LAB: Add article to game title
Commit: 3e94df8334cdc04e522ffb262e02bc25b101ddfb
https://github.com/scummvm/scummvm/commit/3e94df8334cdc04e522ffb262e02bc25b101ddfb
Author: Walter Agazzi (walter.agazzi at protonmail.com)
Date: 2022-11-28T19:43:13+01:00
Commit Message:
MOHAWK: LB: Minor title fixes in detection
Changed paths:
engines/mohawk/detection.cpp
diff --git a/engines/mohawk/detection.cpp b/engines/mohawk/detection.cpp
index 2dd63f7cea1..caffab23c2f 100644
--- a/engines/mohawk/detection.cpp
+++ b/engines/mohawk/detection.cpp
@@ -48,10 +48,10 @@ static const PlainGameDescriptor mohawkGames[] = {
{"jamesmath", "James Discovers/Explores Math"},
{"treehouse", "The Treehouse"},
{"greeneggs", "Green Eggs and Ham"},
- {"seussabc", "Dr Seuss's ABC"},
+ {"seussabc", "Dr. Seuss's ABC"},
{"1stdegree", "In the 1st Degree"},
{"csusa", "Where in the USA is Carmen Sandiego?"},
- {"seussps", "Dr Seuss's Preschool"},
+ {"seussps", "Dr. Seuss's Preschool"},
{"tortoise", "Aesop's Fables: The Tortoise and the Hare"},
{"arthur", "Arthur's Teacher Trouble"},
{"grandma", "Just Grandma and Me"},
Commit: 15fd2006354cd18b6c5111ad3978c004e3a3098e
https://github.com/scummvm/scummvm/commit/15fd2006354cd18b6c5111ad3978c004e3a3098e
Author: Walter Agazzi (walter.agazzi at protonmail.com)
Date: 2022-11-28T19:43:13+01:00
Commit Message:
TINSEL: Change "2" to "II" in DW2 title
Changed paths:
engines/tinsel/detection.cpp
diff --git a/engines/tinsel/detection.cpp b/engines/tinsel/detection.cpp
index 7182b162efe..3e852998bac 100644
--- a/engines/tinsel/detection.cpp
+++ b/engines/tinsel/detection.cpp
@@ -30,7 +30,7 @@
static const PlainGameDescriptor tinselGames[] = {
{"dw", "Discworld"},
- {"dw2", "Discworld 2: Missing Presumed ...!?"},
+ {"dw2", "Discworld II: Missing Presumed ...!?"},
{"noir", "Discworld Noir"},
{0, 0}
};
Commit: 851ac635b74756ae20b0876e7cb6001c84795faf
https://github.com/scummvm/scummvm/commit/851ac635b74756ae20b0876e7cb6001c84795faf
Author: Walter Agazzi (walter.agazzi at protonmail.com)
Date: 2022-11-28T19:43:13+01:00
Commit Message:
SUPERNOVA: Complete gametitles in detection
Changed paths:
engines/supernova/detection.cpp
diff --git a/engines/supernova/detection.cpp b/engines/supernova/detection.cpp
index dbb5c2c55b9..e787112a381 100644
--- a/engines/supernova/detection.cpp
+++ b/engines/supernova/detection.cpp
@@ -32,8 +32,8 @@ static const DebugChannelDef debugFlagList[] = {
};
static const PlainGameDescriptor supernovaGames[] = {
- {"msn1", "Mission Supernova 1"},
- {"msn2", "Mission Supernova 2"},
+ {"msn1", "Mission Supernova - Part 1: The fate of Horst Hummel"},
+ {"msn2", "Mission Supernova - Part 2: The Doppelg\303\244nger"},
{nullptr, nullptr}
};
Commit: 4bd921bff14ff68d4c4a08779ae4e1b659be2647
https://github.com/scummvm/scummvm/commit/4bd921bff14ff68d4c4a08779ae4e1b659be2647
Author: Walter Agazzi (walter.agazzi at protonmail.com)
Date: 2022-11-28T19:43:13+01:00
Commit Message:
NIPPON: Add comma in title to match common naming
Changed paths:
engines/parallaction/detection.cpp
engines/parallaction/metaengine.cpp
diff --git a/engines/parallaction/detection.cpp b/engines/parallaction/detection.cpp
index 884c4a29f04..cf565d3b121 100644
--- a/engines/parallaction/detection.cpp
+++ b/engines/parallaction/detection.cpp
@@ -30,7 +30,7 @@
#include "parallaction/parallaction.h"
static const PlainGameDescriptor parallactionGames[] = {
- {"nippon", "Nippon Safes Inc."},
+ {"nippon", "Nippon Safes, Inc."},
{"bra", "The Big Red Adventure"},
{nullptr, nullptr}
};
@@ -215,7 +215,7 @@ public:
}
const char *getOriginalCopyright() const override {
- return "Nippon Safes Inc. (C) Dynabyte";
+ return "Nippon Safes, Inc. (C) Dynabyte";
}
const DebugChannelDef *getDebugChannels() const override {
diff --git a/engines/parallaction/metaengine.cpp b/engines/parallaction/metaengine.cpp
index 6740b826f14..97e7115d718 100644
--- a/engines/parallaction/metaengine.cpp
+++ b/engines/parallaction/metaengine.cpp
@@ -103,7 +103,7 @@ Common::KeymapArray ParallactionMetaEngine::initKeymaps(const char *target) cons
Keymap *engineKeymap;
if (gameId == "nippon")
- engineKeymap = new Keymap(Keymap::kKeymapTypeGame, "parallaction", "Nippon Safes Inc.");
+ engineKeymap = new Keymap(Keymap::kKeymapTypeGame, "parallaction", "Nippon Safes, Inc.");
else if (gameId == "bra")
engineKeymap = new Keymap(Keymap::kKeymapTypeGame, "parallaction", "The Big Red Adventure");
else
Commit: 74c855d89d69db207ed28e6a1622b4835e2e085f
https://github.com/scummvm/scummvm/commit/74c855d89d69db207ed28e6a1622b4835e2e085f
Author: Walter Agazzi (walter.agazzi at protonmail.com)
Date: 2022-11-28T19:43:13+01:00
Commit Message:
LAB: Add article to game title
Changed paths:
engines/lab/detection.cpp
diff --git a/engines/lab/detection.cpp b/engines/lab/detection.cpp
index bcb4fdb3e49..bb3195b8084 100644
--- a/engines/lab/detection.cpp
+++ b/engines/lab/detection.cpp
@@ -31,7 +31,7 @@
#include "lab/detection.h"
static const PlainGameDescriptor lab_setting[] = {
- { "lab", "Labyrinth of Time" },
+ { "lab", "The Labyrinth of Time" },
{ nullptr, nullptr }
};
@@ -111,7 +111,7 @@ public:
}
const char *getOriginalCopyright() const override {
- return "Labyrinth of Time (C) 2004 The Wyrmkeep Entertainment Co. and Terra Nova Development";
+ return "The Labyrinth of Time (C) 2004 The Wyrmkeep Entertainment Co. and Terra Nova Development";
}
};
More information about the Scummvm-git-logs
mailing list