aboutsummaryrefslogtreecommitdiff
path: root/engines/avalanche/sequence.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/avalanche/sequence.cpp')
-rw-r--r--engines/avalanche/sequence.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/engines/avalanche/sequence.cpp b/engines/avalanche/sequence.cpp
index 2715e648b3..57d39a91db 100644
--- a/engines/avalanche/sequence.cpp
+++ b/engines/avalanche/sequence.cpp
@@ -47,17 +47,14 @@ namespace Avalanche {
void then_show(byte what) {
byte fv;
- ;
for (fv = 1; fv <= seq_length; fv ++)
if (seq[fv] == 0) {
- ;
seq[fv] = what;
return;
}
}
void first_show(byte what) {
- ;
/* First, we need to blank out the entire array. */
fillchar(seq, sizeof(seq), '\0');
@@ -67,7 +64,6 @@ void first_show(byte what) {
}
void then_flip(byte where, byte ped) {
- ;
then_show(now_flip);
dna.flip_to_where = where;
@@ -75,13 +71,11 @@ void then_flip(byte where, byte ped) {
}
void start_to_close() {
- ;
lose_timer(reason_sequencer);
set_up_timer(7, procsequence, reason_sequencer);
}
void start_to_open() {
- ;
dna.user_moves_avvy = false; /* They can't move. */
stopwalking; /* And they're not moving now. */
start_to_close(); /* Apart from that, it's the same thing. */
@@ -91,12 +85,10 @@ void call_sequencer();
/* This proc is called by Timeout when it's time to do another frame. */
static void shove_left() {
- ;
move(seq[2], seq[1], seq_length - 1); /* Shift everything to the left. */
}
void call_sequencer() {
- ;
switch (seq[1]) {
case 0:
return;
@@ -108,7 +100,6 @@ void call_sequencer() {
}
break;
case 177: {
- ;
user_moves_avvy = true;
fliproom(flip_to_where, flip_to_ped); /* 177 = Flip room. */
if (seq[1] == 177) shove_left();