Added AMS section and fixed inconsistencies

This commit is contained in:
2026-02-07 23:00:29 +01:00
parent 59f7dde33a
commit 763cb43983
6 changed files with 75 additions and 121 deletions

View File

@@ -325,11 +325,11 @@ void TakeScreenshot(){
return;
char *name, *path;
const char basepath[] = "sd:/tegraexplorer/screenshots";
const char basepath[] = "sd:/APL/screenshots";
name = malloc(40);
s_printf(name, "Screenshot_%08X.bmp", get_tmr_us());
f_mkdir("sd:/tegraexplorer");
f_mkdir("sd:/APL");
f_mkdir(basepath);
path = CombinePaths(basepath, name);
free(name);