mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-27 05:32:45 +00:00
applied De Morgan's law to an expression to expose similarities
svn-id: r26250
This commit is contained in:
parent
54b785fb3b
commit
838ec385cf
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user