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

Helco noreply at scummvm.org
Thu Aug 6 15:04:12 UTC 2026


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

Summary:
e527ca93c1 ALCACHOFA: Add russian variant of corvino


Commit: e527ca93c135c076a3cb874a5e88f97be6537007
    https://github.com/scummvm/scummvm/commit/e527ca93c135c076a3cb874a5e88f97be6537007
Author: Helco (hermann.noll at hotmail.com)
Date: 2026-08-06T17:03:35+02:00

Commit Message:
ALCACHOFA: Add russian variant of corvino

Changed paths:
    engines/alcachofa/detection_tables.h
    engines/alcachofa/game-v2.cpp


diff --git a/engines/alcachofa/detection_tables.h b/engines/alcachofa/detection_tables.h
index dbef7dfb0d4..d30b6ccf26c 100644
--- a/engines/alcachofa/detection_tables.h
+++ b/engines/alcachofa/detection_tables.h
@@ -153,6 +153,21 @@ const AlcachofaGameDescription gameDescriptions[] = {
 		},
 		EngineVersion::V2_1
 	},
+	{
+		{
+			"corvino",
+			"Агенты 008: Банда Корвино",
+			AD_ENTRY3s(
+				"Fondos/MUSEO_O.ANI", "69feb5cd9a8d7e1d7f391e6d422579fb", 9556,
+				"Mapas/mapa1.emc", "d0a8eb184e813cf337840bb0e5270ee8", 33515,
+				"Mapas/mapa2.emc", "d0a8eb184e813cf337840bb0e5270ee8", 40452),
+			Common::RU_RUS,
+			Common::kPlatformWindows,
+			ADGF_TESTING | ADGF_USEEXTRAASTITLE,
+			GUIO0()
+		},
+		EngineVersion::V2_1
+	},
 
 	//
 	// Balones y Patadones
diff --git a/engines/alcachofa/game-v2.cpp b/engines/alcachofa/game-v2.cpp
index 1b5e2870183..f512ece6725 100644
--- a/engines/alcachofa/game-v2.cpp
+++ b/engines/alcachofa/game-v2.cpp
@@ -479,6 +479,8 @@ public:
 	}
 
 	bool isKnownBadVideo(int32 videoId) override {
+		if (g_engine->gameDescription().desc.language == Language::RU_RUS)
+			return false;
 		// These use DV codec in the steam release
 		return videoId < 2;
 	}




More information about the Scummvm-git-logs mailing list