File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,9 @@ DATA := data
3434INCLUDES := include amitool/include
3535# ROMFS := romfs
3636APP_TITLE := Thenaya
37- APP_DESCRIPTION := Amiibo Maker (Alpha 0.6)
37+ MAJOR_VERSION := 0
38+ MINOR_VERSION := 7
39+ APP_DESCRIPTION := Amiibo Maker (Alpha 0.7)
3840APP_AUTHOR := HiddenRambler
3941
4042# ---------------------------------------------------------------------------------
@@ -44,7 +46,7 @@ ARCH := -march=armv6k -mtune=mpcore -mfloat-abi=hard -mtp=soft
4446
4547CFLAGS := -g -Wall -O2 -mword-relocations \
4648 -fomit-frame-pointer -ffunction-sections \
47- $(ARCH )
49+ $(ARCH ) -DMAJOR_VERSION= $( MAJOR_VERSION ) -DMINOR_VERSION= $( MINOR_VERSION )
4850
4951CFLAGS += $(INCLUDE ) -DARM11 -D_3DS
5052
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ void uiUpdateStatus(char *status) {
4040void uiUpdateBanner () {
4141 consoleSelect (& headerScreen );
4242 printf ("\e[1;7m\e[2J\e[H" ); //invert colors and clear screen
43- printf ("\e[1;1HThenaya\e[1;33Hv0.6 [%s]" , __DATE__ );
43+ printf ("\e[1;1HThenaya\e[1;33Hv%d.%d [%s]" , MAJOR_VERSION , MINOR_VERSION , __DATE__ );
4444 char line [51 ];
4545 memset (line , 0xc4 , sizeof (line )- 1 );
4646 line [sizeof (line )- 1 ] = '\0' ;
You can’t perform that action at this time.
0 commit comments