aboutsummaryrefslogtreecommitdiff
path: root/engines/startrek/rooms/feather4.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/startrek/rooms/feather4.cpp')
-rw-r--r--engines/startrek/rooms/feather4.cpp44
1 files changed, 22 insertions, 22 deletions
diff --git a/engines/startrek/rooms/feather4.cpp b/engines/startrek/rooms/feather4.cpp
index 1118350706..7b883032cd 100644
--- a/engines/startrek/rooms/feather4.cpp
+++ b/engines/startrek/rooms/feather4.cpp
@@ -73,91 +73,91 @@ void Room::feather4Tick1() {
}
void Room::feather4UseCommunicator() {
- showText(TX_SPEAKER_MCCOY, TX_FEA4_005); // BUGFIX: Original played wrong audio file (TX_FEA4N008)
+ showText(TX_SPEAKER_MCCOY, 5, true); // BUGFIX: Original played wrong audio file (TX_FEA4N008)
}
void Room::feather4UsePhaser() {
- showText(TX_SPEAKER_SPOCK, TX_FEA4_011);
+ showText(TX_SPEAKER_SPOCK, 11, true);
}
void Room::feather4UseSTricorderOnLight() {
- spockScan(DIR_W, TX_FEA4_010);
+ spockScan(DIR_W, 10, true);
}
void Room::feather4UseSTricorderOnMushroom() {
- spockScan(DIR_W, TX_FEA4_012);
+ spockScan(DIR_W, 12, true);
}
void Room::feather4UseSTricorderOnFern() {
- spockScan(DIR_W, TX_FEA4_009);
+ spockScan(DIR_W, 9, false, true);
}
void Room::feather4UseSTricorderAnywhere() {
- spockScan(DIR_W, TX_FEA4_008);
+ spockScan(DIR_W, 8, false, true);
}
void Room::feather4UseMTricorderOnLight() {
- mccoyScan(DIR_W, TX_FEA4_001);
+ mccoyScan(DIR_W, 1, false, true);
}
void Room::feather4UseMTricorderOnMushroom() {
- mccoyScan(DIR_W, TX_FEA4_003);
+ mccoyScan(DIR_W, 3, false, true);
}
void Room::feather4UseMTricorderAnywhere() {
- mccoyScan(DIR_W, TX_FEA4_006);
+ mccoyScan(DIR_W, 6, false, true);
}
void Room::feather4UseMedkitAnywhere() {
- showText(TX_SPEAKER_MCCOY, TX_FEA4_002);
+ showText(TX_SPEAKER_MCCOY, 2, true);
}
void Room::feather4TalkToMccoy() {
- showText(TX_SPEAKER_MCCOY, TX_FEA4_004);
+ showText(TX_SPEAKER_MCCOY, 4, true);
}
void Room::feather4TalkToSpock() {
- showText(TX_SPEAKER_SPOCK, TX_FEA4_007);
+ showText(TX_SPEAKER_SPOCK, 7, true);
}
void Room::feather4TalkToRedshirt() {
- showText(TX_SPEAKER_STRAGEY, TX_FEA4_013);
+ showText(TX_SPEAKER_STRAGEY, 13, true);
}
void Room::feather4LookAtEyes() {
- showDescription(TX_FEA4N003);
+ showDescription(3, true);
}
void Room::feather4LookAnywhere() {
- showDescription(TX_FEA4N008);
+ showDescription(8, true);
}
void Room::feather4LookAtMushroom() {
- showDescription(TX_FEA4N001);
+ showDescription(1, true);
}
void Room::feather4LookAtFern() {
- showDescription(TX_FEA4N000);
+ showDescription(0, true);
}
void Room::feather4LookAtLight() {
- showDescription(TX_FEA4N002);
+ showDescription(2, true);
}
void Room::feather4LookAtKirk() {
- showDescription(TX_FEA4N004);
+ showDescription(4, true);
}
void Room::feather4LookAtSpock() {
- showDescription(TX_FEA4N007);
+ showDescription(7, true);
}
void Room::feather4LookAtMccoy() {
- showDescription(TX_FEA4N006);
+ showDescription(6, true);
}
void Room::feather4LookAtRedshirt() {
- showDescription(TX_FEA4N005);
+ showDescription(5, true);
}
}