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

sev- noreply at scummvm.org
Tue Nov 5 23:20:24 UTC 2024


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:
d021c0bce0 QDENGINE: Added support for Czech version of nupogodi3


Commit: d021c0bce0d4cb7eed3d15595db11aa63b33ecf6
    https://github.com/scummvm/scummvm/commit/d021c0bce0d4cb7eed3d15595db11aa63b33ecf6
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2024-11-06T00:20:16+01:00

Commit Message:
QDENGINE: Added support for Czech version of nupogodi3

Changed paths:
    engines/qdengine/detection_tables.h
    engines/qdengine/qdengine.cpp


diff --git a/engines/qdengine/detection_tables.h b/engines/qdengine/detection_tables.h
index da62bd32358..4b268d2f9ef 100644
--- a/engines/qdengine/detection_tables.h
+++ b/engines/qdengine/detection_tables.h
@@ -76,10 +76,9 @@ const ADGameDescription GAME_DESCRIPTIONS[] = {
 	// Na, palauk! Zuikio dainos
 	GAMEl("nupogodi3", "3fbcdd27bf0a3defb6195c92b9b0a95f", 1675036,
 			"qd_game.exe", "18b4260f3f25ac0f394a8c618203dcba", 1855208, Common::LT_LTU),
-
 	// Jen počkej a Píseň pro zajíce
-	//GAMEl("nupogodi3", "???", 1675036,
-	//		"qd_game.exe", "???", 1855208, Common::CZ_CZE),
+	GAMEl("nupogodi3", "c0fab62fe6f3a339e96b1dd4a034e40a", 1674743,
+			"qd_game.exe", "d5e942e1d588fbd127c812551c0b67ef", 909312, Common::CS_CZE),
 
 #undef SUPPORT_STATUS
 #define SUPPORT_STATUS ADGF_UNSTABLE
diff --git a/engines/qdengine/qdengine.cpp b/engines/qdengine/qdengine.cpp
index c33052d8dd8..80ea714be15 100644
--- a/engines/qdengine/qdengine.cpp
+++ b/engines/qdengine/qdengine.cpp
@@ -420,6 +420,8 @@ static int detectVersion(Common::String gameID) {
 		return 20030919;		// QDSCR_GAME_TITLE = 182, 06b1cf45d (repo-vss)
 	} else if (gameID == "nupogodi3" && g_engine->getLanguage() == Common::RU_RUS) {
 		return 20031014;		// QDSCR_TEXT_DB = 184, d864cc279 (repo-vss)
+	} else if (gameID == "nupogodi3" && g_engine->getLanguage() == Common::CS_CZE) {
+		return 20031014;		// QDSCR_TEXT_DB = 184, d864cc279 (repo-vss)
 	} else if (gameID == "nupogodi3" && g_engine->getLanguage() == Common::LT_LTU) {
 		return 20031206;		// QDSCR_TEXT_DB = 185
 	} else if (gameID == "pilots3") {




More information about the Scummvm-git-logs mailing list