diff --git a/Makefile.3ds b/Makefile.3ds index 2be9e35..60ada03 100644 --- a/Makefile.3ds +++ b/Makefile.3ds @@ -33,7 +33,7 @@ DATA := data INCLUDES := include APP_TITLE := Super ftBRONY II Turbo -APP_DESCRIPTION := v2.0 +APP_DESCRIPTION := v2.1 APP_AUTHOR := mtheall ICON := ftbrony.png @@ -44,7 +44,7 @@ ARCH := -march=armv6k -mtune=mpcore -mfloat-abi=hard CFLAGS := -g -Wall -O3 -mword-relocations \ $(ARCH) \ - -DSTATUS_STRING="\"ftbrony v2.0\"" + -DSTATUS_STRING="\"ftbrony v2.1\"" CFLAGS += $(INCLUDE) -DARM11 -D_3DS diff --git a/Makefile.linux b/Makefile.linux index 3042b21..1dc9966 100644 --- a/Makefile.linux +++ b/Makefile.linux @@ -3,7 +3,7 @@ TARGET := $(notdir $(CURDIR)) CFILES := $(wildcard source/*.c) OFILES := $(patsubst source/%,build.linux/%,$(CFILES:.c=.o)) -CFLAGS := -g -Wall -Iinclude -DSTATUS_STRING="\"ftpd v2.0\"" +CFLAGS := -g -Wall -Iinclude -DSTATUS_STRING="\"ftpd v2.1\"" LDFLAGS := .PHONY: all clean