applied De Morgan's law to an expression to expose similarities

svn-id: r26250
This commit is contained in:
Nicola Mettifogo 2007-03-19 22:32:35 +00:00
parent 54b785fb3b
commit 838ec385cf

View File

@ -377,10 +377,10 @@ void runDialogue(SpeakData *data) {
Cnv* v6E;
if (!scumm_stricmp(data->_name, "yourself") || data->_name[0] == '\0') {
v6E = _vm->_char._talk;
} else {
if (scumm_stricmp(data->_name, "yourself") && data->_name[0] != '\0') {
v6E = _vm->_disk->loadTalk(data->_name);
} else {
v6E = _vm->_char._talk;
}
_askPassword = false;