Invert colorscheme by default on ncurses version for more distinct squares

This commit is contained in:
Tiehuis
2015-02-23 16:18:41 +13:00
parent 1e2b2b76ac
commit 622a4b46ef
3 changed files with 14 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
CC ?= clang
CFLAGS += -g -Wall -Wextra
LFLAGS +=
DEFINES := -DVT100 $(shell pkg-config --cflags sdl2)
DEFINES := -DINVERT_COLORS -DVT100 $(shell pkg-config --cflags sdl2)
PROGRAM := 2048
C_FILES := $(wildcard src/*.c)