aboutsummaryrefslogtreecommitdiff
path: root/saga/actor.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2005-01-07 15:49:47 +0000
committerEugene Sandulenko2005-01-07 15:49:47 +0000
commit0a89a28e4588a64e8a7b62d34f3cd621f666c0f0 (patch)
tree3d6146e9631c91ff7c61aa86eecb45d47bd6382b /saga/actor.cpp
parent071b09cab4881287d702d45726438797b143f7d5 (diff)
downloadscummvm-rg350-0a89a28e4588a64e8a7b62d34f3cd621f666c0f0.tar.gz
scummvm-rg350-0a89a28e4588a64e8a7b62d34f3cd621f666c0f0.tar.bz2
scummvm-rg350-0a89a28e4588a64e8a7b62d34f3cd621f666c0f0.zip
o Add reported German IHNM and ITE
o Fix IHNM. It does not have actors now (all actors in IHNM are in resources, not hardcoded) svn-id: r16478
Diffstat (limited to 'saga/actor.cpp')
-rw-r--r--saga/actor.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/saga/actor.cpp b/saga/actor.cpp
index 3f7a95fcf4..e7611ebd8a 100644
--- a/saga/actor.cpp
+++ b/saga/actor.cpp
@@ -389,6 +389,11 @@ void Actor::updateActorsScene() {
ActorLocation possibleLocation;
Point delta;
+ if (_vm->_gameType == GType_IHNM) {
+ warning("Actors aren't implemented for IHNM yet");
+ return;
+ }
+
_activeSpeech.stringsCount = 0;
_protagonist = NULL;