Removed the RF_PLACARD flag. Also, simplified sfPlaceActor and removed a non needed check

svn-id: r28901
This commit is contained in:
Filippos Karapetis 2007-09-14 12:42:47 +00:00
parent 5f1232a744
commit c84ff65720
7 changed files with 25 additions and 55 deletions

View file

@ -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);