diff options
author | Matthew Hoops | 2013-05-02 18:26:58 -0400 |
---|---|---|
committer | Matthew Hoops | 2013-05-02 18:43:10 -0400 |
commit | 0031c41db855ac4bebd05ca1b2c1fa6694242979 (patch) | |
tree | 98f4e4bf20148171c3638476ed7f24a61a7a03c1 /engines/hugo | |
parent | 8942a96bafaa8541383347318c19392ce949248a (diff) | |
download | scummvm-rg350-0031c41db855ac4bebd05ca1b2c1fa6694242979.tar.gz scummvm-rg350-0031c41db855ac4bebd05ca1b2c1fa6694242979.tar.bz2 scummvm-rg350-0031c41db855ac4bebd05ca1b2c1fa6694242979.zip |
COMMON: Change kPlatformPC to kPlatformDOS
"PC" was very ambiguous and now it matches what we show in the GUI.
This also corrects sword2's platform to Windows.
Diffstat (limited to 'engines/hugo')
-rw-r--r-- | engines/hugo/detection.cpp | 6 | ||||
-rw-r--r-- | engines/hugo/file.cpp | 2 |
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; |