Skip to content

Commit

Permalink
2.3 fix tx service
Browse files Browse the repository at this point in the history
  • Loading branch information
Kronos2308 committed Jan 6, 2020
1 parent ae0250f commit a30e9aa
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Hakupayload/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ void ipl_main()

//Blank ,0xFF00FF22,0xFFCCCCCC verde
//gfx_render_splash(&g_gfx_ctxt, (u8*)sd_file_read("StarDust/background.bmp"));
gfx_printf(&g_gfx_con, "%k*%k Haku33 v2.2 Kronos2308, Hard Reset\n\n",0xFF00FF22,0xFFCCCCCC);
gfx_printf(&g_gfx_con, "%k*%k Haku33 v2.3 Kronos2308, Hard Reset\n\n",0xFF00FF22,0xFFCCCCCC);
gfx_printf(&g_gfx_con, "%k TU CONSOLA SERA COMPLETAMENTE LIMPADA: SAVES, JUEGOS, ETC\n\n",0xFF828282);
gfx_printf(&g_gfx_con, "%k SE REALIZARA UN HARD RESET LUEGO SE APAGARA LA CONSOLA\n\n",0xFF828282);
gfx_printf(&g_gfx_con, "%k SI NO SABES LO QUE HACES, PRESIONA B PARA ABORTAR \n\n",0xFF828282);
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ INCLUDES := include
EXEFS_SRC := exefs_src
APP_TITLE := Haku33
APP_AUTHOR := Kronos2308
APP_VERSION := 2.2
APP_VERSION := 2.3
ROMFS := romfs

#---------------------------------------------------------------------------------
Expand Down
Binary file modified romfs/Haku33_payload.bin
Binary file not shown.
11 changes: 3 additions & 8 deletions source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,9 @@ bool install()
else
printf("\n\x1b[33;1m*\x1b[0m If it freezes a long time, it has failed. Press POWER 15s\n\n");

txinit();
txforcedisableftp();
txexit();
//Initialize proc
printf("\x1b[32;1m*\x1b[0m Initialize proc\n");
consoleUpdate(NULL);
Expand Down Expand Up @@ -332,8 +335,6 @@ set_LANG();
u32 more = 0;
u32 LT = 0;
u32 RT = 0;
txinit();
txforcedisableftp();
while (appletMainLoop())
{

Expand Down Expand Up @@ -367,8 +368,6 @@ if (kHeld & KEY_PLUS)
printf("\x1b[31;1m*\x1b[0m Desinstala Incognito %s(Requerido)\n\n",incognito());
if(!HasConnection())//detect airplane mode for evoid freeze
printf("\x1b[31;1m*\x1b[0m Desactiva el Modo Avion usar las 90DNS (Requerido)\n\n\x1b[33;1m*\x1b[0m DNS Primario: 163.172.141.219\n\n\x1b[33;1m*\x1b[0m DNS Secundario: 207.246.121.77\n\n");
if(fileExists("license.dat"))
printf("\x1b[33;1m*\x1b[0m Si lo tienes activo, Apaga el FTP de sxos\n\n");
}else{
printf("\n\x1b[30;1m YOUR CONSOLE WILL BE COMPLETELY CLEANED: SAVES, GAMES, ETC \x1b[0m\n");
printf("\n\x1b[30;1m A HARD RESET WILL BE PERFORMED AFTER THE CONSOLE WILL BE OFF \x1b[0m\n");
Expand All @@ -379,11 +378,7 @@ if (kHeld & KEY_PLUS)
printf("\x1b[31;1m*\x1b[0m Uninstall Incognito (Required)\n\n");
if(!HasConnection())//detect airplane mode for evoid freeze
printf("\x1b[31;1m*\x1b[0m Disable Airplane mode and use 90DNS(Required)\n\n\x1b[32;1m*\x1b[0m Primary DNS: 163.172.141.219\n\n\x1b[32;1m*\x1b[0m Secondary DNS: 207.246.121.77\n\n");
if(fileExists("license.dat"))
printf("\x1b[33;1m*\x1b[0m If you have it active, Turn off FTP sxos\n\n");

}
txexit();
consoleUpdate(NULL);


Expand Down

0 comments on commit a30e9aa

Please sign in to comment.