aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction
diff options
context:
space:
mode:
authorNicola Mettifogo2007-03-19 22:30:54 +0000
committerNicola Mettifogo2007-03-19 22:30:54 +0000
commit54b785fb3b73336926ce8474822e801b0b6261e1 (patch)
tree135d928ba16bc7f7a604faf9577ad991d897f3ce /engines/parallaction
parenteb6318e9fa951b5568846fc2fb20b4d7a09fda64 (diff)
downloadscummvm-rg350-54b785fb3b73336926ce8474822e801b0b6261e1.tar.gz
scummvm-rg350-54b785fb3b73336926ce8474822e801b0b6261e1.tar.bz2
scummvm-rg350-54b785fb3b73336926ce8474822e801b0b6261e1.zip
fixed bug from first decompile
svn-id: r26249
Diffstat (limited to 'engines/parallaction')
-rw-r--r--engines/parallaction/dialogue.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/parallaction/dialogue.cpp b/engines/parallaction/dialogue.cpp
index aef8dec71d..d7d52ad7b6 100644
--- a/engines/parallaction/dialogue.cpp
+++ b/engines/parallaction/dialogue.cpp
@@ -410,7 +410,7 @@ void runDialogue(SpeakData *data) {
_vm->_gfx->copyScreen(Gfx::kBitBack, Gfx::kBitFront);
- if (scumm_stricmp(data->_name, "yourself") || data->_name[0] == '\0') {
+ if (scumm_stricmp(data->_name, "yourself") && data->_name[0] != '\0') {
_vm->_gfx->freeCnv(v6E);
delete v6E;
}