a little cleanup of unnecessary code
authorjolynsbass <jolynsbass@78b8d119-cf0a-0410-b17c-f493084dd1d7>
Sat, 10 Jun 2006 20:30:32 +0000 (20:30 +0000)
committerjolynsbass <jolynsbass@78b8d119-cf0a-0410-b17c-f493084dd1d7>
Sat, 10 Jun 2006 20:30:32 +0000 (20:30 +0000)
git-svn-id: https://s.snth.net/svn/neverball/trunk@445 78b8d119-cf0a-0410-b17c-f493084dd1d7

ball/game.c

index 322f69c..27cecb8 100644 (file)
@@ -821,7 +821,6 @@ static int game_update_state(int *state_value)
     {
         *state_value = g->s;
         audio_play(AUD_GOAL, 1.0f);
-        grow_goal = grow_orig;
         return g->c ? GAME_SPEC : GAME_GOAL;
     }
 
@@ -838,7 +837,6 @@ static int game_update_state(int *state_value)
         part_burst(p, c+1);
         part_burst(p, c+2);
         drawball = 0;
-        grow_goal = grow_orig;
         audio_play(AUD_TIME, 1.0f);
         return GAME_TIME;
     }
@@ -848,7 +846,6 @@ static int game_update_state(int *state_value)
     if (bt && fp->uv[0].p[1] < fp->vv[0].p[1])
     {
         audio_play(AUD_FALL, 1.0f);
-        grow_goal = grow_orig;
         return GAME_FALL;
     }