From 3d4108d49be012c553716b2ac26d45edec30585a Mon Sep 17 00:00:00 2001 From: d0k3 Date: Tue, 19 Jul 2016 23:15:09 +0200 Subject: [PATCH] Made 6x10 font the default --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9ec6c05..d0e3130 100644 --- a/Makefile +++ b/Makefile @@ -41,12 +41,12 @@ CFLAGS += -DBUILD_NAME="\"$(TARGET) (`date +'%Y/%m/%d'`)\"" ifeq ($(FONT),ORIG) CFLAGS += -DFONT_ORIGINAL -else ifeq ($(FONT),6x10) +else ifeq ($(FONT),6X10) CFLAGS += -DFONT_6X10 else ifeq ($(FONT),ACORN) CFLAGS += -DFONT_ACORN else -CFLAGS += -DFONT_ORIGINAL +CFLAGS += -DFONT_6X10 endif ifeq ($(MODE),safe)