Skip to content

Commit de1b0ce

Browse files
committed
theatre
1 parent aa810d0 commit de1b0ce

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

frotz/src/games/theatre.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,17 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
2424

2525
// Theatre: http://ifdb.tads.org/viewgame?id=bv8of8y9xeo7307g
2626

27-
const zword theatre_special_ram_addrs[2] = {
27+
const zword theatre_special_ram_addrs[4] = {
2828
17830, // Tracks dial location
2929
17834, // Track watch hand
30+
17832, // Hearing gibberish
31+
18122, // Push the chandelier
3032
};
3133

3234
const char *theatre_intro[] = { "\n" };
3335

3436
zword* theatre_ram_addrs(int *n) {
35-
*n = 2;
37+
*n = 4;
3638
return theatre_special_ram_addrs;
3739
}
3840

tools/test_games.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -465,6 +465,14 @@
465465
32: "ask charles about temple",
466466
77: "ask charles about chest",
467467
84: "listen",
468+
},
469+
"theatre.z5": {
470+
"z": [15],
471+
"wait": [15, 249],
472+
190: "read newspaper",
473+
271: "show earth crystal to trent",
474+
272: "show star crystal to trent",
475+
274: "ask trent about elizabeth",
468476
}
469477

470478
}

0 commit comments

Comments
 (0)