diff options
author | Gregory Montoir | 2003-11-12 21:22:14 +0000 |
---|---|---|
committer | Gregory Montoir | 2003-11-12 21:22:14 +0000 |
commit | 9d89fe2b499cf8df9a1d8456d2d9b0bab7a46412 (patch) | |
tree | eaf60e08ecc8b3898da1b59f1bbb9c3f4655c65f /queen | |
parent | de1e3baf41f60df4afe1d3b7eef2eb2fca00f3a2 (diff) | |
download | scummvm-rg350-9d89fe2b499cf8df9a1d8456d2d9b0bab7a46412.tar.gz scummvm-rg350-9d89fe2b499cf8df9a1d8456d2d9b0bab7a46412.tar.bz2 scummvm-rg350-9d89fe2b499cf8df9a1d8456d2d9b0bab7a46412.zip |
fix the skipped initial talk to floda receptionist
svn-id: r11270
Diffstat (limited to 'queen')
-rw-r--r-- | queen/talk.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/queen/talk.cpp b/queen/talk.cpp index 48c9145f91..8d3af3e126 100644 --- a/queen/talk.cpp +++ b/queen/talk.cpp @@ -473,10 +473,10 @@ void Talk::initialTalk() { byte *ptr = _joePtr + 2; - uint16 hasString = READ_BE_UINT16(ptr); ptr += 2; + uint16 hasNotString = READ_BE_UINT16(ptr); ptr += 2; char joeString[MAX_STRING_SIZE]; - if (hasString) { + if (!hasNotString) { ptr = getString(ptr, joeString, MAX_STRING_LENGTH); //debug(0, "joeString = '%s'", joeString); } |