From 9a9711945c2add826e5887aabe2330bee9042b4b Mon Sep 17 00:00:00 2001 From: Oxore Date: Thu, 12 Jul 2018 04:13:15 +0300 Subject: Introduce pause mechanics, refactor a little Introduce Pause mechanics and mention it in README.md. Makefile: replace unnecessary "-MMD -MP" with just "-MD" flag, so it allows to compile with tcc too. Refactor: Rename game.isStarted field to game.started field. Move arrKeys container to engine.c and remove it from main.c. Refactor char iterator in utf8to32_strcpy function. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 7e88eb9..9622c0a 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ CFLAGS+=-std=c11 CFLAGS+=-fms-extensions CFLAGS+=-g3 CFLAGS+=-O0 -CFLAGS+=-MMD -MP +CFLAGS+=-MD LDFLAGS+=$(COMMON) LDFLAGS+=-lcsfml-graphics -- cgit v1.2.3