Updated to new controller patcher

fixed displaying number of loaded files
This commit is contained in:
Maschell 2016-08-04 18:55:02 +02:00
parent e1666b6103
commit 83834ebd0d
3 changed files with 3 additions and 3 deletions

@ -1 +1 @@
Subproject commit 0f6d2945fc65b2939dbede096508bd9e59c8adb9
Subproject commit e67dc213b59d242e9407d6ac16dc68bde83c34c7

View File

@ -115,7 +115,7 @@ void SplashScreen(int time){
char* msg = (char*) malloc(80);
PRINT_TEXT2(0,0, "HID to VPAD %s - %s %s - by Maschell",APP_VERION,__DATE__,__TIME__);
int readFiles = 0;//ConfigReader::getNumberOfLoadedFiles();
int readFiles = ConfigReader::getNumberOfLoadedFiles();
int i = 2;
PRINT_TEXT1(0,i, " - Reading SD Card."); i++;

View File

@ -1,5 +1,5 @@
#define MAJOR_VERION "0"
#define MINOR_VERSION "9"
#define EXTRA_VERSION " "
#define EXTRA_VERSION "a"
#define APP_VERION "v" MAJOR_VERION "." MINOR_VERSION EXTRA_VERSION