Skip to content

Commit

Permalink
update oled
Browse files Browse the repository at this point in the history
  • Loading branch information
Kronos2308 committed Apr 2, 2023
1 parent 11078a9 commit b70a1d9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
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 := 5.3
APP_VERSION := 5.4
ROMFS := romfs

#---------------------------------------------------------------------------------
Expand Down
Binary file modified romfs/TegraExplorer.bin
Binary file not shown.
5 changes: 3 additions & 2 deletions romfs/startup_mariko.te
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
is=["8000000000000120","8000000000000047"]
p=println
pr=print
pe={pause() exit() movefile("sd:/payload.bin.bak", "sd:/payload.bin")}
pe={copyfile("sd:/payload.bin.bak", "sd:/payload.bin") pause() exit()}
println("Haku33 Kronos2308 Hard Reset, Kronos2308 - Fork from TegraExplorer")
wait={t=timer()while(timer()<(t+tw)){print("Wait for",(t+tw-timer()/1000),"seconds \r")}}
p("System wiper\n")
Expand All @@ -22,6 +22,7 @@ p("\n\nCleaning!")

movefile("sd:/Nintendo", "sd:/Hamburgesa_Nintendo")
movefile("sd:/Nintendo", "sd:/Hamburgesa_Nintendo_1")
movefile("sd:/Nintendo", "sd:/Hamburgesa_Nintendo_2")

delfile("sd:/TegraExplorer.bin")
delfile("sd:/startup.te")
Expand All @@ -32,5 +33,5 @@ delfile("sd:/payload.bin")
movefile("sd:/payload.bin.bak", "sd:/payload.bin")

p("\n\nDone!")
p("\n\nPress Any button to full power off!")
p("\n\nPower off!")
power(3)
5 changes: 4 additions & 1 deletion source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ int main(int argc, char **argv)
printf(LG.text3);
printf(LG.text4);
if (is_patched){
printf("\n\n %s",LG.text7);
printf("\n\n %s",LG.text8);
}
printf("\n\x1b[31;1m%s \x1b[0m ",Logs);
if (is_patched && !keysok){
Expand All @@ -234,11 +234,14 @@ int main(int argc, char **argv)
//call clean after combo
if (kHeld & KEY_A)
{
/*
if (is_patched){
if (keysok){
SetupClean();
}
} else SetupClean();
*/
SetupClean();
//break;
}

Expand Down

0 comments on commit b70a1d9

Please sign in to comment.