aboutsummaryrefslogtreecommitdiff
path: root/engines/saga/interface.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2007-09-14 12:42:47 +0000
committerFilippos Karapetis2007-09-14 12:42:47 +0000
commitc84ff65720f62810d54253ddf232d2e5d33a843f (patch)
treecfa85a6091454181f358feab20ec8ca0c8993ec5 /engines/saga/interface.cpp
parent5f1232a744c807839ce39c1062bc941b832624a1 (diff)
downloadscummvm-rg350-c84ff65720f62810d54253ddf232d2e5d33a843f.tar.gz
scummvm-rg350-c84ff65720f62810d54253ddf232d2e5d33a843f.tar.bz2
scummvm-rg350-c84ff65720f62810d54253ddf232d2e5d33a843f.zip
Removed the RF_PLACARD flag. Also, simplified sfPlaceActor and removed a non needed check
svn-id: r28901
Diffstat (limited to 'engines/saga/interface.cpp')
-rw-r--r--engines/saga/interface.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/saga/interface.cpp b/engines/saga/interface.cpp
index 070cdd12da..201ae58659 100644
--- a/engines/saga/interface.cpp
+++ b/engines/saga/interface.cpp
@@ -713,7 +713,7 @@ void Interface::setStatusText(const char *text, int statusColor) {
assert(text != NULL);
assert(strlen(text) < STATUS_TEXT_LEN);
- if (_vm->_render->getFlags() & (RF_PLACARD | RF_MAP))
+ if (_vm->_render->getFlags() & RF_MAP || _vm->_interface->getMode() == kPanelPlacard)
return;
strncpy(_statusText, text, STATUS_TEXT_LEN);