[Scummvm-git-logs] scummvm master -> 1b1aba305e95b62e8e02ddc9f850a97283f429e0

sev- sev at scummvm.org
Sun Dec 4 15:23:49 CET 2016


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

Summary:
6acbe91a27 COMMON: Added Estonian language
137173aee3 FULLPIPE: Add detection for Estonian version
1b1aba305e FULLPIPE: Added detection for Russian demo version.


Commit: 6acbe91a2730f618c918a18f8145e4a35df8d59f
    https://github.com/scummvm/scummvm/commit/6acbe91a2730f618c918a18f8145e4a35df8d59f
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2016-12-04T15:21:37+01:00

Commit Message:
COMMON: Added Estonian language

Changed paths:
    common/language.cpp
    common/language.h


diff --git a/common/language.cpp b/common/language.cpp
index 97c515b..b7397be 100644
--- a/common/language.cpp
+++ b/common/language.cpp
@@ -35,6 +35,7 @@ const LanguageDescription g_languages[] = {
 	{    "en",    "en", "English", EN_ANY }, // Generic English (when only one game version exist)
 	{    "gb", "en_GB", "English (GB)", EN_GRB },
 	{    "us", "en_US", "English (US)", EN_USA },
+	{    "et", "et_EE", "Estonian", ET_EST },
 	{    "fr", "fr_FR", "French", FR_FRA },
 	{    "de", "de_DE", "German", DE_DEU },
 	{    "gr", "el_GR", "Greek", GR_GRE },
diff --git a/common/language.h b/common/language.h
index ac3c726..af2c252 100644
--- a/common/language.h
+++ b/common/language.h
@@ -41,6 +41,7 @@ enum Language {
 	EN_ANY,     // Generic English (when only one game version exist)
 	EN_GRB,
 	EN_USA,
+	ET_EST,
 	FR_FRA,
 	DE_DEU,
 	GR_GRE,


Commit: 137173aee364410f5e299adb1196188083ec8c9d
    https://github.com/scummvm/scummvm/commit/137173aee364410f5e299adb1196188083ec8c9d
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2016-12-04T15:21:37+01:00

Commit Message:
FULLPIPE: Add detection for Estonian version

Changed paths:
    engines/fullpipe/detection.cpp


diff --git a/engines/fullpipe/detection.cpp b/engines/fullpipe/detection.cpp
index 96c677c..985421d 100644
--- a/engines/fullpipe/detection.cpp
+++ b/engines/fullpipe/detection.cpp
@@ -68,6 +68,17 @@ static const ADGameDescription gameDescriptions[] = {
 		GUIO1(GUIO_NONE)
 	},
 
+	// Fullpipe Estonian version
+	{
+		"fullpipe",
+		0,
+		AD_ENTRY1s("4620.sc2", "571f6b4b68b02003e35bc12c1a1d3fe3", 466),
+		Common::ET_EST,
+		Common::kPlatformWindows,
+		ADGF_DROPPLATFORM,
+		GUIO1(GUIO_NONE)
+	},
+
 	// Fullpipe German Demo version
 	{
 		"fullpipe",


Commit: 1b1aba305e95b62e8e02ddc9f850a97283f429e0
    https://github.com/scummvm/scummvm/commit/1b1aba305e95b62e8e02ddc9f850a97283f429e0
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2016-12-04T15:21:37+01:00

Commit Message:
FULLPIPE: Added detection for Russian demo version.

Crashes as startup

Changed paths:
    engines/fullpipe/detection.cpp


diff --git a/engines/fullpipe/detection.cpp b/engines/fullpipe/detection.cpp
index 985421d..e85e75e 100644
--- a/engines/fullpipe/detection.cpp
+++ b/engines/fullpipe/detection.cpp
@@ -46,7 +46,7 @@ namespace Fullpipe {
 
 static const ADGameDescription gameDescriptions[] = {
 
-	// Fullpipe Russian version
+	// Full Pipe Russian version
 	{
 		"fullpipe",
 		0,
@@ -57,7 +57,7 @@ static const ADGameDescription gameDescriptions[] = {
 		GUIO1(GUIO_NONE)
 	},
 
-	// Fullpipe German version
+	// Full Pipe German version
 	{
 		"fullpipe",
 		0,
@@ -68,7 +68,7 @@ static const ADGameDescription gameDescriptions[] = {
 		GUIO1(GUIO_NONE)
 	},
 
-	// Fullpipe Estonian version
+	// Full Pipe Estonian version
 	{
 		"fullpipe",
 		0,
@@ -79,7 +79,18 @@ static const ADGameDescription gameDescriptions[] = {
 		GUIO1(GUIO_NONE)
 	},
 
-	// Fullpipe German Demo version
+	// Full Pipe Russian Demo version
+	{
+		"fullpipe",
+		0,
+		AD_ENTRY1s("4620.sc2", "a0c71b47fc35a5e163fcd8d0972639bb", 70),
+		Common::RU_RUS,
+		Common::kPlatformWindows,
+		ADGF_DROPPLATFORM | ADGF_DEMO,
+		GUIO1(GUIO_NONE)
+	},
+
+	// Full Pipe German Demo version
 	{
 		"fullpipe",
 		0,





More information about the Scummvm-git-logs mailing list