aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/scalpel/scalpel_user_interface.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2015-06-06 22:40:29 -0400
committerPaul Gilbert2015-06-06 22:40:29 -0400
commit933e6751943fcb28fdb1b616f9834bd4f231f63d (patch)
tree4c4fc326b171ee60725af90c0afad08e779f04d3 /engines/sherlock/scalpel/scalpel_user_interface.cpp
parent3511f30a2621af4773df5271cdffb6275b9e829e (diff)
downloadscummvm-rg350-933e6751943fcb28fdb1b616f9834bd4f231f63d.tar.gz
scummvm-rg350-933e6751943fcb28fdb1b616f9834bd4f231f63d.tar.bz2
scummvm-rg350-933e6751943fcb28fdb1b616f9834bd4f231f63d.zip
SHERLOCK: Setting up game specific People descendant classes
Diffstat (limited to 'engines/sherlock/scalpel/scalpel_user_interface.cpp')
-rw-r--r--engines/sherlock/scalpel/scalpel_user_interface.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/sherlock/scalpel/scalpel_user_interface.cpp b/engines/sherlock/scalpel/scalpel_user_interface.cpp
index e2c66789ad..62083586e7 100644
--- a/engines/sherlock/scalpel/scalpel_user_interface.cpp
+++ b/engines/sherlock/scalpel/scalpel_user_interface.cpp
@@ -21,6 +21,7 @@
*/
#include "sherlock/scalpel/scalpel_user_interface.h"
+#include "sherlock/scalpel/scalpel_people.h"
#include "sherlock/sherlock.h"
#include "sherlock/scalpel/settings.h"
@@ -1468,7 +1469,7 @@ void ScalpelUserInterface::doPickControl() {
void ScalpelUserInterface::doTalkControl() {
Events &events = *_vm->_events;
Journal &journal = *_vm->_journal;
- People &people = *_vm->_people;
+ ScalpelPeople &people = *(ScalpelPeople *)_vm->_people;
Screen &screen = *_vm->_screen;
Sound &sound = *_vm->_sound;
Talk &talk = *_vm->_talk;