removed empty stop functions from bump and plasma to avoid delaying the
[dosdemo] / src / plasma.c
index 05f68e4..132cff3 100644 (file)
@@ -10,7 +10,6 @@
 static int init(void);
 static void destroy(void);
 static void start(long trans_time);
-static void stop(long trans_time);
 static void draw(void);
 
 static struct screen scr = {
@@ -18,7 +17,7 @@ static struct screen scr = {
        init,
        destroy,
        start,
-       stop,
+       0,
        draw
 };
 
@@ -84,10 +83,6 @@ static void start(long trans_time)
        startingTime = time_msec;
 }
 
-static void stop(long trans_time)
-{
-}
-
 static void draw(void)
 {
        int x, y;