Skip to content

Commit

Permalink
SHERLOCK: Fix bug when opening the journal
Browse files Browse the repository at this point in the history
  • Loading branch information
bluegr committed Jun 1, 2015
1 parent e028eb4 commit 3b2c045
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/sherlock/journal.cpp
Expand Up @@ -154,7 +154,7 @@ void Journal::loadJournalFile(bool alreadyLoaded) {
// Find the person being referred to
talk._talkTo = -1;
for (int idx = 0; idx < (int)people._characters.size(); ++idx) {
Common::String portrait = people[idx]._portrait;
Common::String portrait = people._characters[idx]._portrait;
Common::String numStr(portrait.c_str(), portrait.c_str() + 4);

if (locStr == numStr) {
Expand Down

0 comments on commit 3b2c045

Please sign in to comment.