aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/gui_lol.cpp
diff options
context:
space:
mode:
authorMatthew Hoops2013-05-02 18:26:58 -0400
committerMatthew Hoops2013-05-02 18:43:10 -0400
commit0031c41db855ac4bebd05ca1b2c1fa6694242979 (patch)
tree98f4e4bf20148171c3638476ed7f24a61a7a03c1 /engines/kyra/gui_lol.cpp
parent8942a96bafaa8541383347318c19392ce949248a (diff)
downloadscummvm-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/kyra/gui_lol.cpp')
-rw-r--r--engines/kyra/gui_lol.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/kyra/gui_lol.cpp b/engines/kyra/gui_lol.cpp
index b73eddbaf3..8808c313fc 100644
--- a/engines/kyra/gui_lol.cpp
+++ b/engines/kyra/gui_lol.cpp
@@ -373,8 +373,8 @@ void LoLEngine::gui_drawCharPortraitWithStats(int charNum) {
} else {
gui_drawLiveMagicBar(33, 32, _characters[charNum].magicPointsCur, 0, _characters[charNum].magicPointsMax, 5, 32, 162, 1, 0);
gui_drawLiveMagicBar(39, 32, _characters[charNum].hitPointsCur, 0, _characters[charNum].hitPointsMax, 5, 32, 154, 1, 1);
- _screen->printText((_flags.platform == Common::kPlatformPC && !_flags.isTalkie) ? "M" : getLangString(0x4253), 33, 1, 160, 0);
- _screen->printText((_flags.platform == Common::kPlatformPC && !_flags.isTalkie) ? "H" : getLangString(0x4254), 39, 1, 152, 0);
+ _screen->printText((_flags.platform == Common::kPlatformDOS && !_flags.isTalkie) ? "M" : getLangString(0x4253), 33, 1, 160, 0);
+ _screen->printText((_flags.platform == Common::kPlatformDOS && !_flags.isTalkie) ? "H" : getLangString(0x4254), 39, 1, 152, 0);
}
int spellLevels = 0;