From: Jason Woofenden Date: Sat, 15 Apr 2006 16:26:44 +0000 (+0000) Subject: oops, didn't mean to commit those other files X-Git-Tag: 0.5~21 X-Git-Url: https://jasonwoof.com/gitweb/?p=vor.git;a=commitdiff_plain;h=a61d12a904040e20a434b432d62b6790fc7e4db3;hp=badd0f9bfc6dad829073e606c1953572ece1b06b oops, didn't mean to commit those other files --- diff --git a/Makefile b/Makefile index dacecb6..90e50a6 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ DATA_PREFIX := /usr/share/vor PROGRAM_PREFIX := /usr/games/bin -CFLAGS := -ggdb +CFLAGS := -Wall -O3 LDFLAGS := paths := -DDATA_PREFIX=\"$(DATA_PREFIX)\" @@ -58,8 +58,8 @@ data: $(graphics) program: vor %.o: %.c - #@echo compiling $@ from $< - $(CC) $(cflags) -c -o $@ $< + @echo compiling $@ from $< + @$(CC) $(cflags) -c -o $@ $< $(my_objects): config.h diff --git a/main.c b/main.c index 8a4f085..ea1f536 100644 --- a/main.c +++ b/main.c @@ -144,7 +144,7 @@ new_bang_dots(int xbang, int ybang, int dx, int dy, SDL_Surface *s) int row_inc; double theta, r; - n = 12.0 * t_frame; + n = 24.0 * t_frame; pixel = s->pixels; row_inc = s->pitch/sizeof(uint16_t) - s->w; colorkey = s->format->colorkey;