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/scumm/he | |
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/scumm/he')
-rw-r--r-- | engines/scumm/he/script_v60he.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/scumm/he/script_v60he.cpp b/engines/scumm/he/script_v60he.cpp index 5e359385b6..bbd8725904 100644 --- a/engines/scumm/he/script_v60he.cpp +++ b/engines/scumm/he/script_v60he.cpp @@ -804,7 +804,7 @@ void ScummEngine_v60he::o60_readFile() { int val; // Fatty Bear uses positive values - if (_game.platform == Common::kPlatformPC && _game.id == GID_FBEAR) + if (_game.platform == Common::kPlatformDOS && _game.id == GID_FBEAR) size = -size; assert(_hInFileTable[slot]); @@ -834,7 +834,7 @@ void ScummEngine_v60he::o60_writeFile() { int slot = pop(); // Fatty Bear uses positive values - if (_game.platform == Common::kPlatformPC && _game.id == GID_FBEAR) + if (_game.platform == Common::kPlatformDOS && _game.id == GID_FBEAR) size = -size; assert(_hOutFileTable[slot]); |