AVALANCHE: Remove empty lines with only ";" characters in them.

This commit is contained in:
uruk 2013-06-18 11:50:18 +02:00
parent 38bc20a076
commit f974bccbb0
150 changed files with 370 additions and 2097 deletions

View file

@ -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();