diff options
author | Paul Gilbert | 2007-11-22 10:10:35 +0000 |
---|---|---|
committer | Paul Gilbert | 2007-11-22 10:10:35 +0000 |
commit | 78c1f8504a59ea5c4e8ff1e1921d304cb58ae3b1 (patch) | |
tree | 1c3080e2971ea6405e4aebaa3bee3e1ad7440b4d | |
parent | b6fbe6ec4ef8ec17875b89d50fffd550ba94d787 (diff) | |
download | scummvm-rg350-78c1f8504a59ea5c4e8ff1e1921d304cb58ae3b1.tar.gz scummvm-rg350-78c1f8504a59ea5c4e8ff1e1921d304cb58ae3b1.tar.bz2 scummvm-rg350-78c1f8504a59ea5c4e8ff1e1921d304cb58ae3b1.zip |
Talk data bugfix - create_lure was reading past the end of the talk data list
svn-id: r29604
-rw-r--r-- | engines/lure/res.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/lure/res.h b/engines/lure/res.h index 3f5cf6c5c5..c95f254b57 100644 --- a/engines/lure/res.h +++ b/engines/lure/res.h @@ -47,7 +47,7 @@ struct TalkDialogDetails { bool active; }; -#define NUM_GIVE_TALK_IDS 7 +#define NUM_GIVE_TALK_IDS 6 class Resources { private: |