aboutsummaryrefslogtreecommitdiff
path: root/scumm/actor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/actor.cpp')
-rw-r--r--scumm/actor.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/scumm/actor.cpp b/scumm/actor.cpp
index c0df1c4903..e9f2f529ff 100644
--- a/scumm/actor.cpp
+++ b/scumm/actor.cpp
@@ -811,6 +811,17 @@ void ScummEngine::putActors() {
}
}
+static const int v1MMActorTalkColor[25] = {
+ 1, 7, 2, 14, 8, 1, 3, 7, 7, 12, 1, 13, 1, 4, 5, 5, 4, 3, 1, 5, 1, 1, 1, 7, 7
+};
+
+void ScummEngine::setupV1ActorTalkColor() {
+ int i;
+
+ for (i = 1; i < _numActors; i++)
+ _actors[i].talkColor = v1MMActorTalkColor[i];
+}
+
void ScummEngine::showActors() {
int i;