From 74c7e00f14256945eccdd0643d0a22f5842bcaed Mon Sep 17 00:00:00 2001 From: Michael Theall Date: Fri, 15 Jan 2016 18:43:45 -0600 Subject: [PATCH] Fix status string --- Makefile.3ds | 2 +- Makefile.linux | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.3ds b/Makefile.3ds index a2c52b5..2be9e35 100644 --- a/Makefile.3ds +++ b/Makefile.3ds @@ -44,7 +44,7 @@ ARCH := -march=armv6k -mtune=mpcore -mfloat-abi=hard CFLAGS := -g -Wall -O3 -mword-relocations \ $(ARCH) \ - -DSTATUS_STRING="\"ftbrony v1.2\"" + -DSTATUS_STRING="\"ftbrony v2.0\"" CFLAGS += $(INCLUDE) -DARM11 -D_3DS diff --git a/Makefile.linux b/Makefile.linux index 7928caa..3042b21 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 v1.2\"" +CFLAGS := -g -Wall -Iinclude -DSTATUS_STRING="\"ftpd v2.0\"" LDFLAGS := .PHONY: all clean