X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fgame_em%2Fsynchro_3.c;h=af7d9f8fcafa36cf86cd17a6b8c6a6d59b4d0669;hb=9583e9c55b889974e0df9a8ca1930efdf29bda29;hp=230a907c3ba27242140577139753a4e8d705d1f5;hpb=7d171d862abdecced79f60535b49a686386cefe1;p=rocksndiamonds.git diff --git a/src/game_em/synchro_3.c b/src/game_em/synchro_3.c index 230a907c..af7d9f8f 100644 --- a/src/game_em/synchro_3.c +++ b/src/game_em/synchro_3.c @@ -43,16 +43,16 @@ void synchro_3(void) lev.wonderwall_time--; if (lev.time > 0 && lev.time <= 50 && lev.time % 5 == 0) - play[SAMPLE_time] = 1; + play_sound(-1, -1, SAMPLE_time); if (lev.wheel_cnt) - play[SAMPLE_wheel] = 1; + play_sound(-1, -1, SAMPLE_wheel); - /* grow ameuba */ + /* grow amoeba */ random = Random; - for (count = lev.ameuba_time; count--;) + for (count = lev.amoeba_time; count--;) { x = (random >> 10) % (WIDTH - 2); y = (random >> 20) % (HEIGHT - 2); @@ -66,10 +66,10 @@ void synchro_3(void) case Xsand: case Xplant: case Yplant: - if (tab_ameuba[Cave[y-1][x]] || - tab_ameuba[Cave[y][x+1]] || - tab_ameuba[Cave[y+1][x]] || - tab_ameuba[Cave[y][x-1]]) + if (tab_amoeba[Cave[y-1][x]] || + tab_amoeba[Cave[y][x+1]] || + tab_amoeba[Cave[y+1][x]] || + tab_amoeba[Cave[y][x-1]]) Cave[y][x] = Xdrip_eat; }