aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlolbot-iichan2020-01-10 04:50:24 +0300
committerFilippos Karapetis2020-01-11 17:33:09 +0200
commit395f707203e8f30add0b2f8e9d8616dd12468676 (patch)
tree5f969de6152d3d9d1b47b561f82b1376d69ad113
parent91f7d856afa12e051d88c7afda2a0a6d4b5b27ef (diff)
downloadscummvm-rg350-395f707203e8f30add0b2f8e9d8616dd12468676.tar.gz
scummvm-rg350-395f707203e8f30add0b2f8e9d8616dd12468676.tar.bz2
scummvm-rg350-395f707203e8f30add0b2f8e9d8616dd12468676.zip
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? ^_~
-rw-r--r--engines/wintermute/detection_tables.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/engines/wintermute/detection_tables.h b/engines/wintermute/detection_tables.h
index 36280574ef..270562eeca 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),