X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=dosdemo;a=blobdiff_plain;f=src%2Fbump.c;h=104b1270dc7125107ea4fe7790fd247ee47bb75c;hp=dc53337418b8b1abc67844c2ce181465cfe84003;hb=bd3de1442570d4159c9b58e456b8d69fed9eadc8;hpb=5f474fafc7e6a051f1d6809e1000894a5887c742 diff --git a/src/bump.c b/src/bump.c index dc53337..104b127 100644 --- a/src/bump.c +++ b/src/bump.c @@ -12,7 +12,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 = { @@ -20,11 +19,11 @@ static struct screen scr = { init, destroy, start, - stop, + 0, draw }; -static struct point { +struct point { int x, y; }; @@ -143,10 +142,6 @@ static void start(long trans_time) startingTime = time_msec; } -static void stop(long trans_time) -{ -} - static void eraseArea(struct point *p, int width, int height) { int x, y, dx;