removed the empty stop function from grise.c (I feel like I did that
authorJohn Tsiombikas <nuclear@mutantstargoat.com>
Tue, 11 Oct 2016 12:29:49 +0000 (15:29 +0300)
committerJohn Tsiombikas <nuclear@mutantstargoat.com>
Tue, 11 Oct 2016 12:29:49 +0000 (15:29 +0300)
before)

src/grise.c

index 0f89dc5..7179511 100644 (file)
@@ -88,7 +88,7 @@ static struct screen scr = {
        init,
        destroy,
        start,
        init,
        destroy,
        start,
-       stop,
+       0,
        draw
 };
 
        draw
 };
 
@@ -146,12 +146,6 @@ static void start(long trans_time)
        lastFrameTime = time_msec;
 }
 
        lastFrameTime = time_msec;
 }
 
-static void stop(long trans_time)
-{
-}
-
-
-
 
 static void draw(void)
 {
 
 static void draw(void)
 {