aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authoryzrh <yzrh@noema.org>2021-01-29 21:52:29 +0000
committeryzrh <yzrh@noema.org>2021-01-29 21:52:29 +0000
commit89cdfb6f237c2472999a3647dab3664c4e51472e (patch)
treea7edfef6387dac8be5d5d6399d34130fe8bd7173 /src
parent22a1fd45694a17f735c3eab5a677ed80b824a5b4 (diff)
downloadsnake-sdl-89cdfb6f237c2472999a3647dab3664c4e51472e.tar.gz
snake-sdl-89cdfb6f237c2472999a3647dab3664c4e51472e.tar.zst
Update CFLAGS for GCC 10.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile2
-rw-r--r--src/snake-sdl.c3
-rw-r--r--src/version.h2
3 files changed, 3 insertions, 4 deletions
diff --git a/src/Makefile b/src/Makefile
index c176657..f54df80 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -18,7 +18,7 @@ obj = ${src:.c=.o}
PREFIX = /usr/local
-CFLAGS = -O3 -march=native -pipe -flto=thin -Wall -Wno-unused-result
+CFLAGS = -O3 -march=native -pipe -flto -Wall -Wextra -Wno-unused-result -Wno-unused-parameter
LDFLAGS = -Wl,-O3 -lpthread -lSDL2 -lSDL2_ttf
.ifdef SOUND
diff --git a/src/snake-sdl.c b/src/snake-sdl.c
index 8ec1aa7..28268e0 100644
--- a/src/snake-sdl.c
+++ b/src/snake-sdl.c
@@ -1415,8 +1415,7 @@ main(void)
text_score.cache = 0;
if (flappy) {
- delay.tv_nsec = TICK_TIME_INIT /
- SCREEN_UNIT;
+ delay.tv_nsec /= SCREEN_UNIT;
game_snake_init(&snake0, 0);
diff --git a/src/version.h b/src/version.h
index 78edaf2..eabf0a9 100644
--- a/src/version.h
+++ b/src/version.h
@@ -7,4 +7,4 @@
#define VERSION "0"
#define RELEASE "6"
#define PATCH "2"
-#define EXTRA "_5"
+#define EXTRA "_6"