mirror of
https://github.com/modmii/SysCheck-ModMii-Edition.git
synced 2024-11-22 16:19:20 +01:00
-Removed some special characters in languages.c
-Got rid of some unused code
This commit is contained in:
parent
216b96185c
commit
70e9102f97
@ -79,6 +79,7 @@ void deinitGUI(void) {
|
|||||||
GRRLIB_FreeTexture(tex_window_png);
|
GRRLIB_FreeTexture(tex_window_png);
|
||||||
GRRLIB_FreeTexture(tex_ScreenBuf);
|
GRRLIB_FreeTexture(tex_ScreenBuf);
|
||||||
GRRLIB_Exit();
|
GRRLIB_Exit();
|
||||||
|
gprintf("Exiting SysCheck HDE\n\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -202,7 +202,7 @@ int initLanguages(struct tm today)
|
|||||||
TXT_SysMenu = "Menu di sistema %1.1f%c (v%d)";
|
TXT_SysMenu = "Menu di sistema %1.1f%c (v%d)";
|
||||||
TXT_SysMenu2 = "Menu di sistema %s%s (v%d)";
|
TXT_SysMenu2 = "Menu di sistema %s%s (v%d)";
|
||||||
TXT_SysMenu3 = "Menu di sistema %1.1f%c (v%d, Info: v%d %s)";
|
TXT_SysMenu3 = "Menu di sistema %1.1f%c (v%d, Info: v%d %s)";
|
||||||
TXT_NO_HBC = "Non è installato Canale Homebrew";
|
TXT_NO_HBC = "Non e' installato Canale Homebrew";
|
||||||
TXT_HBC = "Canale Homebrew 1.0.%d appoggiato all'IOS%d";
|
TXT_HBC = "Canale Homebrew 1.0.%d appoggiato all'IOS%d";
|
||||||
TXT_HBC_NEW = "Canale Homebrew 1.1.0 appoggiato all'IOS%d";
|
TXT_HBC_NEW = "Canale Homebrew 1.1.0 appoggiato all'IOS%d";
|
||||||
TXT_HBC_112 = "Canale Homebrew 1.1.%d appoggiato all'IOS%d";
|
TXT_HBC_112 = "Canale Homebrew 1.1.%d appoggiato all'IOS%d";
|
||||||
@ -280,7 +280,7 @@ int initLanguages(struct tm today)
|
|||||||
TXT_SysMenu = "Menu de Sistema %1.1f%c (v%d)";
|
TXT_SysMenu = "Menu de Sistema %1.1f%c (v%d)";
|
||||||
TXT_SysMenu2 = "Menu de Sistema %s%s (v%d)";
|
TXT_SysMenu2 = "Menu de Sistema %s%s (v%d)";
|
||||||
TXT_SysMenu3 = "Menu de Sistema %1.1f%c (v%d, Info: v%d %s)";
|
TXT_SysMenu3 = "Menu de Sistema %1.1f%c (v%d, Info: v%d %s)";
|
||||||
TXT_NO_HBC = "No está instalado el Canal Homebrew";
|
TXT_NO_HBC = "No esta' instalado el Canal Homebrew";
|
||||||
TXT_HBC = "Canal Homebrew 1.0.%d corriendo en IOS%d";
|
TXT_HBC = "Canal Homebrew 1.0.%d corriendo en IOS%d";
|
||||||
TXT_HBC_NEW = "Canal Homebrew 1.1.0 corriendo en IOS%d";
|
TXT_HBC_NEW = "Canal Homebrew 1.1.0 corriendo en IOS%d";
|
||||||
TXT_HBC_112 = "Canal Homebrew 1.1.%d corriendo en %d";
|
TXT_HBC_112 = "Canal Homebrew 1.1.%d corriendo en %d";
|
||||||
|
@ -50,7 +50,7 @@ int main(int argc, char **argv)
|
|||||||
arguments.USB = strlen(argv[0]) && (argv[0][0] == 'U' || argv[0][0] == 'u');
|
arguments.USB = strlen(argv[0]) && (argv[0][0] == 'U' || argv[0][0] == 'u');
|
||||||
|
|
||||||
InitGecko();
|
InitGecko();
|
||||||
gprintf("\n==============================================================================\n");
|
gprintf("\n\n==============================================================================\n");
|
||||||
if(argc>=1){
|
if(argc>=1){
|
||||||
int i;
|
int i;
|
||||||
for(i=0; i<argc; i++){
|
for(i=0; i<argc; i++){
|
||||||
@ -1008,7 +1008,6 @@ int main(int argc, char **argv)
|
|||||||
sleep(2);
|
sleep(2);
|
||||||
printEndError(MSG_ReportError);
|
printEndError(MSG_ReportError);
|
||||||
} else {
|
} else {
|
||||||
//chdir("/");
|
|
||||||
// Create the report
|
// Create the report
|
||||||
CheckTime();
|
CheckTime();
|
||||||
FILE *file = fopen(REPORT, "w");
|
FILE *file = fopen(REPORT, "w");
|
||||||
|
@ -42,7 +42,6 @@ s32 downloadSyscheckFile(const char* update_dir, const char* fileName) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ret = http_get_result(&http_status, &outbuf, &length);
|
ret = http_get_result(&http_status, &outbuf, &length);
|
||||||
//u8 *file = (u8*)calloc(length, sizeof(u8))
|
|
||||||
gprintf("http_get_result returned %i\n", ret);
|
gprintf("http_get_result returned %i\n", ret);
|
||||||
|
|
||||||
sprintf(buf, "%s%s", update_dir, fileName);
|
sprintf(buf, "%s%s", update_dir, fileName);
|
||||||
@ -62,8 +61,6 @@ s32 downloadSyscheckFile(const char* update_dir, const char* fileName) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
s32 updateApp(void) {
|
s32 updateApp(void) {
|
||||||
MountSD();
|
|
||||||
fatInitDefault();
|
|
||||||
int ret = net_init();
|
int ret = net_init();
|
||||||
ssl_init();
|
ssl_init();
|
||||||
char update_dir[25];
|
char update_dir[25];
|
||||||
|
Loading…
Reference in New Issue
Block a user