X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fgame_em%2Fsynchro_3.c;h=226d0194420fffbafd7cb75afffaa78f7a583d02;hb=3e71d06e9a97be7bb8c50c76717d08e5c46e0cc8;hp=af7d9f8fcafa36cf86cd17a6b8c6a6d59b4d0669;hpb=9583e9c55b889974e0df9a8ca1930efdf29bda29;p=rocksndiamonds.git diff --git a/src/game_em/synchro_3.c b/src/game_em/synchro_3.c index af7d9f8f..226d0194 100644 --- a/src/game_em/synchro_3.c +++ b/src/game_em/synchro_3.c @@ -12,18 +12,28 @@ void synchro_3(void) { - register unsigned int x; - register unsigned int y; - register unsigned int count; - register unsigned long random; + int x; + int y; + int count; + unsigned long random; /* update variables */ if (lev.score > 9999) lev.score = 9999; +#if 0 +#if 1 + if (lev.time_initial == 0) + lev.time++; + else if (lev.time > 0) + lev.time--; +#else if (lev.time) lev.time--; +#endif +#endif + if (lev.android_move_cnt-- == 0) lev.android_move_cnt = lev.android_move_time; if (lev.android_clone_cnt-- == 0) @@ -42,15 +52,18 @@ void synchro_3(void) if (lev.wonderwall_time && lev.wonderwall_state) lev.wonderwall_time--; - if (lev.time > 0 && lev.time <= 50 && lev.time % 5 == 0) +#if 0 + if (lev.time_initial > 0 && + lev.time > 0 && lev.time <= 50 && lev.time % 5 == 0 && setup.time_limit) play_sound(-1, -1, SAMPLE_time); +#endif if (lev.wheel_cnt) - play_sound(-1, -1, SAMPLE_wheel); + play_element_sound(lev.wheel_x, lev.wheel_y, SAMPLE_wheel, Xwheel); /* grow amoeba */ - random = Random; + random = RandomEM; for (count = lev.amoeba_time; count--;) { @@ -76,7 +89,7 @@ void synchro_3(void) random = random * 129 + 1; } - Random = random; + RandomEM = random; /* handle explosions */