[Scummvm-git-logs] scummvm master -> 395f707203e8f30add0b2f8e9d8616dd12468676

bluegr bluegr at gmail.com
Sat Jan 11 15:33:13 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:
395f707203 WINTERMUTE: Add detection for Hor game


Commit: 395f707203e8f30add0b2f8e9d8616dd12468676
    https://github.com/scummvm/scummvm/commit/395f707203e8f30add0b2f8e9d8616dd12468676
Author: lolbot-iichan (lolbot_iichan at mail.ru)
Date: 2020-01-11T17:33:09+02:00

Commit Message:
WINTERMUTE: Add detection for Hor game

"Hor" is a small ("5 minutes"), complete and really nice game by Roman
Koksharov.

It has no in-game text except the game title, so I marked is at
Common::UNK_LANG.

Source: https://gamejolt.com/games/hor/258037
Source: https://www.indiedb.com/games/hor

v1.0 and v1.3 are actually almost the same, difference is only in
"ALLOW_WINDOWED_MODE" game property and settings binary.

P.S. Have you found a secret ending? ^_~

Changed paths:
    engines/wintermute/detection_tables.h


diff --git a/engines/wintermute/detection_tables.h b/engines/wintermute/detection_tables.h
index 3628057..270562e 100644
--- a/engines/wintermute/detection_tables.h
+++ b/engines/wintermute/detection_tables.h
@@ -74,6 +74,7 @@ static const PlainGameDescriptor wintermuteGames[] = {
 	{"goldencalf",      "The Golden Calf"},
 	{"hamlet",          "Hamlet or the last game without MMORPG features, shaders and product placement"},
 	{"helga",           "Helga Deep In Trouble"},
+	{"hor",             "Hor"},
 	{"jamesperis",      "James Peris: No License Nor Control"},
 	{"knossos",         "K'NOSSOS"},
 	{"kulivocko",       "Kulivocko"},
@@ -887,6 +888,14 @@ static const WMEGameDescription gameDescriptions[] = {
 		WME_ENTRY2s("english.dcp", "b3a93e678f0ef97200f691cd1724643f", 135864,
 					"data.dcp", "45134ed93bc391edf148b79cdcbf2a09", 154266028), Common::EN_ANY, ADGF_UNSTABLE | ADGF_DEMO, WME_1_9_3),
 
+	// Hor v1.0
+	WME_WINENTRY("hor", "1.0",
+		WME_ENTRY1s("data.dcp", "ae94007f25a21143c028c1b7807dd907", 15077486), Common::UNK_LANG, ADGF_UNSTABLE, WME_1_9_3),
+
+	// Hor v1.3
+	WME_WINENTRY("hor", "1.3",
+		WME_ENTRY1s("data.dcp", "37b0abeb8651b82b9e6327bd10a18185", 15077486), Common::UNK_LANG, ADGF_UNSTABLE, WME_1_9_3),
+
 	// James Peris: No License Nor Control (English)
 	WME_WINENTRY("jamesperis", "Version 1.5",
 		WME_ENTRY1s("data.dcp", "f5635080b65aaf75c3676ce0cd46460b", 225294032), Common::EN_ANY, ADGF_UNSTABLE, WME_1_9_1),




More information about the Scummvm-git-logs mailing list