[Scummvm-git-logs] scummvm master -> 0632e6231f59ded07e85b0cbff86c30117730600

dreammaster paulfgilbert at gmail.com
Wed Dec 2 03:59:54 UTC 2020


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:
0632e6231f XEEN: Fix minor mispelling of Darkside of Xeen


Commit: 0632e6231f59ded07e85b0cbff86c30117730600
    https://github.com/scummvm/scummvm/commit/0632e6231f59ded07e85b0cbff86c30117730600
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2020-12-01T19:58:27-08:00

Commit Message:
XEEN: Fix minor mispelling of Darkside of Xeen

Thanks to Trembyle for pointing out it's only a single word

Changed paths:
    engines/xeen/detection.cpp
    engines/xeen/detection_tables.h
    engines/xeen/scripts.h
    engines/xeen/worldofxeen/darkside_cutscenes.h
    engines/xeen/worldofxeen/worldofxeen.h
    engines/xeen/xeen.h


diff --git a/engines/xeen/detection.cpp b/engines/xeen/detection.cpp
index a129ca2e81..1378ae2b04 100644
--- a/engines/xeen/detection.cpp
+++ b/engines/xeen/detection.cpp
@@ -28,7 +28,7 @@
 
 static const PlainGameDescriptor XeenGames[] = {
 	{ "cloudsofxeen", "Might and Magic IV: Clouds of Xeen" },
-	{ "darksideofxeen", "Might and Magic V: Dark Side of Xeen" },
+	{ "darksideofxeen", "Might and Magic V: Darkside of Xeen" },
 	{ "worldofxeen", "Might and Magic: World of Xeen" },
 	{ "swordsofxeen", "Might and Magic: Swords of Xeen" },
 	{0, 0}
diff --git a/engines/xeen/detection_tables.h b/engines/xeen/detection_tables.h
index e26465d6d7..8e47483f51 100644
--- a/engines/xeen/detection_tables.h
+++ b/engines/xeen/detection_tables.h
@@ -122,7 +122,7 @@ static const XeenGameDescription gameDescriptions[] = {
 	},
 
 	{
-		// Dark Side of Xeen
+		// Darkside of Xeen
 		{
 			"darksideofxeen",
 			nullptr,
@@ -137,7 +137,7 @@ static const XeenGameDescription gameDescriptions[] = {
 	},
 
 	{
-		// Dark Side of Xeen (GOG German)
+		// Darkside of Xeen (GOG German)
 		{
 			"darksideofxeen",
 			nullptr,
@@ -152,7 +152,7 @@ static const XeenGameDescription gameDescriptions[] = {
 	},
 
 	{
-		// Dark Side of Xeen (Bestseller Games Magazine #8 German)
+		// Darkside of Xeen (Bestseller Games Magazine #8 German)
 		{
 			"darksideofxeen",
 			nullptr,
diff --git a/engines/xeen/scripts.h b/engines/xeen/scripts.h
index d1236fb464..091b80a1c7 100644
--- a/engines/xeen/scripts.h
+++ b/engines/xeen/scripts.h
@@ -488,7 +488,7 @@ private:
 	bool cmdGotoRandom(ParamsIterator &params);
 
 	/**
-	 * Plays the Dark Side of Xeen ending
+	 * Plays the Darkside of Xeen ending
 	 */
 	bool cmdCutsceneEndDarkside(ParamsIterator &params);
 
@@ -515,7 +515,7 @@ private:
 	void doCloudsEnding();
 
 	/**
-	 * Do the Dark Side of Xeen ending
+	 * Do the Darkside of Xeen ending
 	 */
 	void doDarkSideEnding();
 
diff --git a/engines/xeen/worldofxeen/darkside_cutscenes.h b/engines/xeen/worldofxeen/darkside_cutscenes.h
index aee27e89a5..816e8dffa2 100644
--- a/engines/xeen/worldofxeen/darkside_cutscenes.h
+++ b/engines/xeen/worldofxeen/darkside_cutscenes.h
@@ -51,7 +51,7 @@ private:
 	void animatePharoah(int frame, bool showBall = true);
 
 	/**
-	 * Shows the Dark Side of Xeen title screen
+	 * Shows the Darkside of Xeen title screen
 	 */
 	bool showDarkSideTitle(bool seenIntro);
 
@@ -114,12 +114,12 @@ public:
 	DarkSideCutscenes(XeenEngine *vm) : Cutscenes(vm) {}
 
 	/**
-	 * Shows the Dark Side of Xeen intro sequence
+	 * Shows the Darkside of Xeen intro sequence
 	 */
 	bool showDarkSideIntro(bool seenIntro);
 
 	/**
-	 * Shows the Dark Side of Xeen ending sequence
+	 * Shows the Darkside of Xeen ending sequence
 	 */
 	void showDarkSideEnding(uint endingScore);
 };
diff --git a/engines/xeen/worldofxeen/worldofxeen.h b/engines/xeen/worldofxeen/worldofxeen.h
index f4775aa4af..4c23e1371c 100644
--- a/engines/xeen/worldofxeen/worldofxeen.h
+++ b/engines/xeen/worldofxeen/worldofxeen.h
@@ -31,7 +31,7 @@ namespace WorldOfXeen {
 
 /**
  * Implements a descendant of the base Xeen engine to handle
- * Clouds of Xeen, Dark Side of Xeen, and Worlds of Xeen specific
+ * Clouds of Xeen, Darkside of Xeen, and Worlds of Xeen specific
  * game code
  */
 class WorldOfXeenEngine: public XeenEngine, public WorldOfXeenCutscenes {
diff --git a/engines/xeen/xeen.h b/engines/xeen/xeen.h
index d7387e6da6..43e1ae97ff 100644
--- a/engines/xeen/xeen.h
+++ b/engines/xeen/xeen.h
@@ -56,7 +56,7 @@
  *
  * Games using this engine:
  * - Might & Magic 4: Clouds of Xeen
- * - Might & Magic 5: Dark Side of Xeen
+ * - Might & Magic 5: Darkside of Xeen
  * - Might & Magic: World of Xeen
  * - Might & Magic: Swords of Xeen
  */




More information about the Scummvm-git-logs mailing list