aboutsummaryrefslogtreecommitdiff
path: root/engines/hugo
diff options
context:
space:
mode:
Diffstat (limited to 'engines/hugo')
-rw-r--r--engines/hugo/detection.cpp6
-rw-r--r--engines/hugo/file.cpp2
2 files changed, 4 insertions, 4 deletions
diff --git a/engines/hugo/detection.cpp b/engines/hugo/detection.cpp
index bb5944acc8..ede4ab2279 100644
--- a/engines/hugo/detection.cpp
+++ b/engines/hugo/detection.cpp
@@ -61,7 +61,7 @@ static const HugoGameDescription gameDescriptions[] = {
"hugo1", 0,
AD_ENTRY1s("house.art", "c9403b2fe539185c9fd569b6cc4ff5ca", 14811),
Common::EN_ANY,
- Common::kPlatformPC,
+ Common::kPlatformDOS,
ADGF_NO_FLAGS,
GUIO0()
},
@@ -85,7 +85,7 @@ static const HugoGameDescription gameDescriptions[] = {
"hugo2", 0,
AD_ENTRY1s("objects.dat", "88a718cc0ff2b3b25d49aaaa69d6d52c", 155240),
Common::EN_ANY,
- Common::kPlatformPC,
+ Common::kPlatformDOS,
GF_PACKED,
GUIO0()
},
@@ -109,7 +109,7 @@ static const HugoGameDescription gameDescriptions[] = {
"hugo3", 0,
AD_ENTRY1s("objects.dat", "bb1b061538a445f2eb99b682c0f506cc", 136419),
Common::EN_ANY,
- Common::kPlatformPC,
+ Common::kPlatformDOS,
GF_PACKED,
GUIO0()
},
diff --git a/engines/hugo/file.cpp b/engines/hugo/file.cpp
index 89db21e2a8..e58c2e57d6 100644
--- a/engines/hugo/file.cpp
+++ b/engines/hugo/file.cpp
@@ -496,7 +496,7 @@ void FileManager::readBootFile() {
memset(_vm->_boot._distrib, '\0', sizeof(_vm->_boot._distrib));
_vm->_boot._registered = kRegFreeware;
return;
- } else if (_vm->getPlatform() == Common::kPlatformPC) {
+ } else if (_vm->getPlatform() == Common::kPlatformDOS) {
warning("readBootFile - Skipping as H2 and H3 Dos may be shareware");
memset(_vm->_boot._distrib, '\0', sizeof(_vm->_boot._distrib));
_vm->_boot._registered = kRegShareware;