From 9cd8953f787c3252d09d2343e5da511dc25f2d91 Mon Sep 17 00:00:00 2001 From: niklascfw Date: Fri, 13 Feb 2026 21:34:22 +0100 Subject: [PATCH] Move theme removal to AMS error codes section Relocated "Delete Themes" entry from the boot problem section into the Atmosphere error codes section as "Fix 0100000000001000 (Installiertes Theme)" to better reflect that it fixes an AMS title ID conflict. Co-authored-by: Cursor --- source/tegraexplorer/mainmenu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/tegraexplorer/mainmenu.c b/source/tegraexplorer/mainmenu.c index 428b219..240f5e5 100644 --- a/source/tegraexplorer/mainmenu.c +++ b/source/tegraexplorer/mainmenu.c @@ -32,11 +32,11 @@ extern hekate_config h_cfg; enum { MainExplore = 0, DeleteBootFlags, - DeleteThemes, FixArchiveBitA, FixArchiveBitN, // FixAll, MainAMS, + DeleteThemes, FixAMS_4200, FixAMS_6900, FixAMS_BD00, @@ -55,12 +55,12 @@ enum { MenuEntry_t mainMenuEntries[] = { [MainExplore] = {.optionUnion = COLORTORGB(COLOR_WHITE) | SKIPBIT, .name = "-- Behebe Start Probleme --"}, [DeleteBootFlags] = {.optionUnion = COLORTORGB(COLOR_GREEN), .name = "Automatisches starten der sysmodule deaktivieren"}, - [DeleteThemes] = {.optionUnion = COLORTORGB(COLOR_GREEN), .name = "Loesche installierte Themes"}, [FixArchiveBitA] = {.optionUnion = COLORTORGB(COLOR_GREEN), .name = "Behebe Archive Bit (alle Ordner ausser Nintendo)"}, [FixArchiveBitN] = {.optionUnion = COLORTORGB(COLOR_GREEN), .name = "Behebe Archive Bit (Nintendo Ordner)"}, // [FixAll] = {.optionUnion = COLORTORGB(COLOR_GREEN), .name = "Try everything"}, [MainAMS] = {.optionUnion = COLORTORGB(COLOR_WHITE) | SKIPBIT, .name = "\n-- Atmosphere Fehlercodes --"}, + [DeleteThemes] = {.optionUnion = COLORTORGB(COLOR_CYAN), .name = "Fix 0100000000001000 (Installiertes Theme)"}, [FixAMS_4200] = {.optionUnion = COLORTORGB(COLOR_CYAN), .name = "Fix 4200000000000010 (ldn_mitm)"}, [FixAMS_6900] = {.optionUnion = COLORTORGB(COLOR_CYAN), .name = "Fix 690000000000000D (sys-con)"}, [FixAMS_BD00] = {.optionUnion = COLORTORGB(COLOR_CYAN), .name = "Fix 010000000000BD00 (MissionControl)"},