aboutsummaryrefslogtreecommitdiff
path: root/engines/saga/interface.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2007-09-30 13:19:31 +0000
committerFilippos Karapetis2007-09-30 13:19:31 +0000
commitf002fcf98af5942563112008c180fcbb183c20a2 (patch)
treedca86219a55bddaf4445600847bd17f4e990b7ca /engines/saga/interface.cpp
parentcb2f6ce0928f013087ef130ad9f7abcb19e15d8a (diff)
downloadscummvm-rg350-f002fcf98af5942563112008c180fcbb183c20a2.tar.gz
scummvm-rg350-f002fcf98af5942563112008c180fcbb183c20a2.tar.bz2
scummvm-rg350-f002fcf98af5942563112008c180fcbb183c20a2.zip
IHNM does not have excuse texts
svn-id: r29145
Diffstat (limited to 'engines/saga/interface.cpp')
-rw-r--r--engines/saga/interface.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/saga/interface.cpp b/engines/saga/interface.cpp
index e6854b1c05..8a9808d769 100644
--- a/engines/saga/interface.cpp
+++ b/engines/saga/interface.cpp
@@ -874,7 +874,7 @@ void Interface::drawPanelText(Surface *ds, InterfacePanel *panel, PanelButton *p
textFont = kKnownFontMedium;
textShadowKnownColor = kKnownColorVerbTextShadow;
} else {
- if (panelButton->id < 39 || panelButton->id > 50) {
+ if (panelButton->id < 39) {
// Read non-hardcoded strings from the LUT string table, loaded from the game
// data files
text = _vm->_script->_mainStrings.getString(IHNMTextStringIdsLUT[panelButton->id]);
@@ -2223,7 +2223,7 @@ void Interface::drawPanelButtonText(Surface *ds, InterfacePanel *panel, PanelBut
textWidth = _vm->_font->getStringWidth(kKnownFontMedium, text, 0, kFontNormal);
textHeight = _vm->_font->getHeight(kKnownFontMedium);
} else {
- if (textId < 39 || textId > 50) {
+ if (textId < 39) {
// Read non-hardcoded strings from the LUT string table, loaded from the game
// data files
text = _vm->_script->_mainStrings.getString(IHNMTextStringIdsLUT[textId]);