-Removed some special characters in languages.c

-Got rid of some unused code
This commit is contained in:
joostinonline 2015-10-10 15:06:28 +00:00
parent 216b96185c
commit 70e9102f97
5 changed files with 4 additions and 7 deletions

BIN
boot.elf

Binary file not shown.

View File

@ -79,6 +79,7 @@ void deinitGUI(void) {
GRRLIB_FreeTexture(tex_window_png);
GRRLIB_FreeTexture(tex_ScreenBuf);
GRRLIB_Exit();
gprintf("Exiting SysCheck HDE\n\n");
return;
}

View File

@ -202,7 +202,7 @@ int initLanguages(struct tm today)
TXT_SysMenu = "Menu di sistema %1.1f%c (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_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_NEW = "Canale Homebrew 1.1.0 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_SysMenu2 = "Menu de Sistema %s%s (v%d)";
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_NEW = "Canal Homebrew 1.1.0 corriendo en IOS%d";
TXT_HBC_112 = "Canal Homebrew 1.1.%d corriendo en %d";

View File

@ -50,7 +50,7 @@ int main(int argc, char **argv)
arguments.USB = strlen(argv[0]) && (argv[0][0] == 'U' || argv[0][0] == 'u');
InitGecko();
gprintf("\n==============================================================================\n");
gprintf("\n\n==============================================================================\n");
if(argc>=1){
int i;
for(i=0; i<argc; i++){
@ -1008,7 +1008,6 @@ int main(int argc, char **argv)
sleep(2);
printEndError(MSG_ReportError);
} else {
//chdir("/");
// Create the report
CheckTime();
FILE *file = fopen(REPORT, "w");

View File

@ -42,7 +42,6 @@ s32 downloadSyscheckFile(const char* update_dir, const char* fileName) {
}
ret = http_get_result(&http_status, &outbuf, &length);
//u8 *file = (u8*)calloc(length, sizeof(u8))
gprintf("http_get_result returned %i\n", ret);
sprintf(buf, "%s%s", update_dir, fileName);
@ -62,8 +61,6 @@ s32 downloadSyscheckFile(const char* update_dir, const char* fileName) {
}
s32 updateApp(void) {
MountSD();
fatInitDefault();
int ret = net_init();
ssl_init();
char update_dir[25];