From 78596d159df91bf8a4227f7bf178dc36f90aa967 Mon Sep 17 00:00:00 2001 From: Timo Kokkonen Date: Sun, 4 Apr 2010 11:33:59 +0300 Subject: [PATCH] main.c: Coding convention fixes Signed-off-by: Timo Kokkonen --- main.c | 34 ++++++++++++++++++---------------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/main.c b/main.c index d2f408a..ac1627d 100644 --- a/main.c +++ b/main.c @@ -14,7 +14,7 @@ static void fade_buf(SDL_Surface *screen, double fade) unsigned int *buf = screen->pixels; unsigned char *b; unsigned char amount; - static double threshold = 0; + static double threshold; threshold += fade; if (threshold > 1) { @@ -24,7 +24,7 @@ static void fade_buf(SDL_Surface *screen, double fade) return; } - for (i = 0; i < screen->pitch * screen->h / sizeof(*buf); i ++) { + for (i = 0; i < screen->pitch * screen->h / sizeof(*buf); i++) { if (!buf[i]) continue; b = (unsigned char *)&buf[i]; @@ -33,7 +33,8 @@ static void fade_buf(SDL_Surface *screen, double fade) *b = *b >= amount ? (*b - amount) : *b; b++; *b = *b >= amount ? (*b - amount) : *b; - }} + } +} static void clear_buf(SDL_Surface *screen) { @@ -50,7 +51,7 @@ static unsigned long gettime(void) { struct timespec tp; unsigned long ret; - static unsigned long start = 0; + static unsigned long start; clock_gettime(CLOCK_MONOTONIC, &tp); @@ -111,17 +112,17 @@ static int poll_events(struct sim_status *status, double time) time_scale_rate = 1 / 1.5; break; case SDLK_1: - status->time_scale = 1; - break; + status->time_scale = 1; + break; case SDLK_2: - status->time_scale = 10; - break; + status->time_scale = 10; + break; case SDLK_3: - status->time_scale = 20; - break; + status->time_scale = 20; + break; case SDLK_4: - status->time_scale = 30; - break; + status->time_scale = 30; + break; case SDLK_t: status->tracers_enabled = !status->tracers_enabled; @@ -162,10 +163,11 @@ static int poll_events(struct sim_status *status, double time) } break; case SDL_VIDEORESIZE: - status->screen = SDL_SetVideoMode(event.resize.w, - event.resize.h, - 32, - status->screen->flags); + status->screen = + SDL_SetVideoMode(event.resize.w, + event.resize.h, + 32, + status->screen->flags); break; case SDL_QUIT: goto quit; -- 2.44.0