diff options
author | Paul Gilbert | 2015-08-07 17:38:27 -0400 |
---|---|---|
committer | Paul Gilbert | 2015-08-07 17:38:27 -0400 |
commit | 02548aaf1cb86af6eccebc51a7c537d1e73ee94e (patch) | |
tree | 101dfad5b25a3c7a93198519aaeb418d5bb36594 | |
parent | 6c383d930d6b713e99b7822c27f51451c3984c36 (diff) | |
download | scummvm-rg350-02548aaf1cb86af6eccebc51a7c537d1e73ee94e.tar.gz scummvm-rg350-02548aaf1cb86af6eccebc51a7c537d1e73ee94e.tar.bz2 scummvm-rg350-02548aaf1cb86af6eccebc51a7c537d1e73ee94e.zip |
SHERLOCK: RT: Fix incorrect entries in opcode method table
-rw-r--r-- | engines/sherlock/tattoo/tattoo_talk.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/sherlock/tattoo/tattoo_talk.cpp b/engines/sherlock/tattoo/tattoo_talk.cpp index e8002947fc..7aa75b97a9 100644 --- a/engines/sherlock/tattoo/tattoo_talk.cpp +++ b/engines/sherlock/tattoo/tattoo_talk.cpp @@ -173,6 +173,7 @@ TattooTalk::TattooTalk(SherlockEngine *vm) : Talk(vm), _talkWidget(vm) { (OpcodeMethod)&TattooTalk::cmdSetNPCVerbScript, nullptr, (OpcodeMethod)&TattooTalk::cmdRestorePeopleSequence, + nullptr, (OpcodeMethod)&TattooTalk::cmdSetNPCVerbTarget, (OpcodeMethod)&TattooTalk::cmdTurnSoundsOff }; |