MADS: Fix prior conversation list showing when crawling in vents

This commit is contained in:
Paul Gilbert 2015-03-08 21:15:14 -04:00
parent 1d76659da8
commit 6dd6e55513

View File

@ -410,13 +410,21 @@ void UserInterface::setup(InputMode inputMode) {
}
void UserInterface::drawTextElements() {
if (_vm->_game->_screenObjects._inputMode) {
drawConversationList();
} else {
switch (_vm->_game->_screenObjects._inputMode) {
case kInputBuildingSentences:
// Draw the actions
drawActions();
drawInventoryList();
drawItemVocabList();
break;
case kInputConversation:
drawConversationList();
break;
case kInputLimitedSentences:
default:
break;
}
}