diff --git a/Makefile.3ds b/Makefile.3ds index 2593fa1..2d026a1 100644 --- a/Makefile.3ds +++ b/Makefile.3ds @@ -26,16 +26,16 @@ include $(DEVKITARM)/3ds_rules # - icon.png # - /default_icon.png #--------------------------------------------------------------------------------- -TARGET := ftbrony +TARGET := ftpd BUILD := build SOURCES := source DATA := data INCLUDES := include -APP_TITLE := Super ftBRONY II Turbo +APP_TITLE := Super ftpd II Turbo APP_DESCRIPTION := v$(VERSION) APP_AUTHOR := mtheall -ICON := ftbrony.png +ICON := ftpd.png #--------------------------------------------------------------------------------- # options for code generation @@ -44,7 +44,7 @@ ARCH := -march=armv6k -mtune=mpcore -mfloat-abi=hard CFLAGS := -g -Wall -O3 -mword-relocations \ $(ARCH) \ - -DSTATUS_STRING="\"ftbrony v$(VERSION)\"" + -DSTATUS_STRING="\"ftpd v$(VERSION)\"" CFLAGS += $(INCLUDE) -DARM11 -D_3DS diff --git a/README.md b/README.md index 5d28a37..5363ade 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -ftbrony -======= +ftpd +==== FTP Server for 3DS. @@ -18,7 +18,7 @@ Clone this repository and cd in the resulting directory. make -Copy the `ftbrony.3dsx` file to your SD card and launch it. +Copy the `ftpd.3dsx` file to your SD card and launch it. Supported Commands ------------------ diff --git a/ftbrony.png b/ftbrony.png deleted file mode 100644 index 90ea644..0000000 Binary files a/ftbrony.png and /dev/null differ diff --git a/ftpd.png b/ftpd.png new file mode 100644 index 0000000..a14273d Binary files /dev/null and b/ftpd.png differ diff --git a/source/ftp.c b/source/ftp.c index 97db496..4b4ed87 100644 --- a/source/ftp.c +++ b/source/ftp.c @@ -1432,7 +1432,7 @@ ftp_init(void) #ifdef ENABLE_LOGGING /* open log file */ - FILE *fp = freopen("/ftbrony.log", "wb", stderr); + FILE *fp = freopen("/ftpd.log", "wb", stderr); if(fp == NULL) { console_print(RED "freopen: 0x%08X\n" RESET, errno);