aboutsummaryrefslogtreecommitdiff
path: root/devtools/create_xeen/map.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2018-03-13 18:17:02 -0400
committerPaul Gilbert2018-03-13 18:17:02 -0400
commitac7a9224fe9c66219583dd28e8e3c4fbfe714703 (patch)
treefa12fa1f6006c4fec084d4dde2c2b070c1387c09 /devtools/create_xeen/map.cpp
parent654ef04f82de0e05bee0ab07734f39eef3877069 (diff)
downloadscummvm-rg350-ac7a9224fe9c66219583dd28e8e3c4fbfe714703.tar.gz
scummvm-rg350-ac7a9224fe9c66219583dd28e8e3c4fbfe714703.tar.bz2
scummvm-rg350-ac7a9224fe9c66219583dd28e8e3c4fbfe714703.zip
XEEN: Fix text colors during intro/exit cutscenes
Diffstat (limited to 'devtools/create_xeen/map.cpp')
-rw-r--r--devtools/create_xeen/map.cpp21
1 files changed, 13 insertions, 8 deletions
diff --git a/devtools/create_xeen/map.cpp b/devtools/create_xeen/map.cpp
index 7e38cd7407..6ca1987a7a 100644
--- a/devtools/create_xeen/map.cpp
+++ b/devtools/create_xeen/map.cpp
@@ -145,16 +145,18 @@ void writeMazeEvents(CCArchive &cc) {
f.write(MIRROR_EVENTS, 32);
// Bench 1 events
- const byte BENCH1_EVENTS[21] = {
- 14, 7, 8, 0, 0, 20, 34, 10000 % 256, 10000 / 256, 0, 0, 0, 0, 0, 0, // Give gold
- 5, 7, 8, 0, 1, 18 // Exit
+ const byte BENCH1_EVENTS[32] = {
+ 10, 7, 8, 0, 0, 5, 1, 2, 3, 1, 2, // NPC
+ 14, 7, 8, 0, 1, 20, 34, 10000 % 256, 10000 / 256, 0, 0, 0, 0, 0, 0, // Give gold
+ 5, 7, 8, 0, 2, 18 // Exit
};
- const byte BENCH2_EVENTS[19] = {
- 14, 8, 8, 0, 0, 20, 35, 1000 % 256, 1000 / 256, 0, 0, 0, 0, // Give gems
- 5, 8, 8, 0, 1, 18 // Exit
+ const byte BENCH2_EVENTS[30] = {
+ 10, 8, 8, 0, 0, 5, 1, 3, 3, 1, 2, // NPC
+ 14, 8, 8, 0, 1, 20, 35, 1000 % 256, 1000 / 256, 0, 0, 0, 0, // Give gems
+ 5, 8, 8, 0, 2, 18 // Exit
};
- f.write(BENCH1_EVENTS, 21);
- f.write(BENCH2_EVENTS, 19);
+ f.write(BENCH1_EVENTS, 32);
+ f.write(BENCH2_EVENTS, 30);
cc.add("mazex255.evt", f);
}
@@ -166,6 +168,9 @@ void writeMazeText(CCArchive &cc) {
Common::MemFile f;
f.writeString("Where to?");
+ f.writeString("Isle of ScummVM");
+ f.writeString("You have done well to find this ancient isle. This will aid you on your journey.");
+ f.writeString("It is my hope that this isle will be but the first of many such new destinations the mirror may take you.");
cc.add("aazex255.txt", f);
}