aboutsummaryrefslogtreecommitdiff
path: root/engines/macventure
diff options
context:
space:
mode:
authorBorja Lorente2016-06-30 09:36:04 +0200
committerBorja Lorente2016-08-14 18:43:14 +0200
commit03a9ad4899f19de262a9eed6c9c50219ba44d466 (patch)
treee9867112f42e80c3b99c65f2362be8e992226a7d /engines/macventure
parent517aceefcb397ccda476dc7e2b02d6da5595e4fd (diff)
downloadscummvm-rg350-03a9ad4899f19de262a9eed6c9c50219ba44d466.tar.gz
scummvm-rg350-03a9ad4899f19de262a9eed6c9c50219ba44d466.tar.bz2
scummvm-rg350-03a9ad4899f19de262a9eed6c9c50219ba44d466.zip
MACVENTURE: Fix game detection
Diffstat (limited to 'engines/macventure')
-rw-r--r--engines/macventure/detection_tables.h4
-rw-r--r--engines/macventure/gui.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/engines/macventure/detection_tables.h b/engines/macventure/detection_tables.h
index 08093da57d..e2e94261bb 100644
--- a/engines/macventure/detection_tables.h
+++ b/engines/macventure/detection_tables.h
@@ -22,12 +22,12 @@
namespace MacVenture {
-#define ADGF_DEFAULT (ADGF_DROPLANGUAGE|ADGF_DROPPLATFORM)
+#define ADGF_DEFAULT (ADGF_DROPLANGUAGE|ADGF_DROPPLATFORM|ADGF_MACRESFORK)
#define BASEGAME(n, v, f, md5, s) {n, v, AD_ENTRY1s(f, md5, s), Common::EN_ANY, Common::kPlatformMacintosh, ADGF_DEFAULT, GUIO0()}
static const ADGameDescription gameDescriptions[] = {
- BASEGAME("shadowgate", "Zojoi Rerelease", "Shadowgate.bin", "dea09e16829b99278feb84c121066576", 70528), // Zojoi Rerelease
+ BASEGAME("shadowgate", "Zojoi Rerelease", "Shadowgate.bin", "ebbfbcbf93938bd2900cb0c0213b19ad", 68974), // Zojoi Rerelease
AD_TABLE_END_MARKER
};
} // End of namespace MacVenture
diff --git a/engines/macventure/gui.cpp b/engines/macventure/gui.cpp
index 15d573b6a8..3d38be508b 100644
--- a/engines/macventure/gui.cpp
+++ b/engines/macventure/gui.cpp
@@ -1174,7 +1174,7 @@ BorderBounds Gui::borderBounds(MVWindowType type) {
case MacVenture::kPlainDBox:
return BorderBounds(6, 6, 6, 6);
case MacVenture::kAltBox:
- return BorderBounds(8, 9, 11, 10); // For now, I'll stick to the original bmp, it's gorgeous
+ return BorderBounds(8, 9, 11, 10);
break;
case MacVenture::kNoGrowDoc:
return BorderBounds(1, 17, 1, 1);