From: Timo Kokkonen Date: Sat, 3 Apr 2010 11:17:39 +0000 (+0300) Subject: main.c: Fix typo X-Git-Url: http://git.itanic.dy.fi/?p=sdl-planets;a=commitdiff_plain;h=e7fc1b2b309da09c05a377e633e8a2455fbc840d main.c: Fix typo Signed-off-by: Timo Kokkonen --- diff --git a/main.c b/main.c index dfcc148..87150f8 100644 --- a/main.c +++ b/main.c @@ -23,7 +23,8 @@ static void fade_buf(SDL_Surface *screen, int amount) *b = *b >= amount ? (*b - amount) : *b; b++; *b = *b >= amount ? (*b - amount) : *b; - }} + } +} static void clear_buf(SDL_Surface *screen) {