mirror of
https://github.com/rvtr/TDT.git
synced 2025-10-31 13:51:07 -04:00
Oh so that's how operators work
This commit is contained in:
parent
85dff8ccd0
commit
939e25758e
@ -414,7 +414,7 @@ bool install(char* fpath, bool systemTitle)
|
||||
}
|
||||
|
||||
//offer to patch system titles to normal DSiWare on SysNAND
|
||||
if(!sdnandMode && h->tid_high != 0x00030004 || h->tid_high != 0x00030017) //do not allow patching home menus to be normal DSiWare! This will trigger "ERROR! - 0x0000000000000008 HWINFO_SECURE" on prototype launchers. May also cause issues on the prod versions.
|
||||
if((!sdnandMode && h->tid_high != 0x00030004) && (!sdnandMode && h->tid_high != 0x00030017)) //do not allow patching home menus to be normal DSiWare! This will trigger "ERROR! - 0x0000000000000008 HWINFO_SECURE" on prototype launchers. May also cause issues on the prod versions.
|
||||
{
|
||||
if(choiceBox("This is set as a system/dev\ntitle, would you like to patch\nit to be a normal DSiWare?\n\nThis is safer, but invalidates\nRSA checks and may not work.\n\nIf the title is homebrew this isstrongly recommended.") == YES)
|
||||
{
|
||||
@ -457,7 +457,10 @@ bool install(char* fpath, bool systemTitle)
|
||||
tidLow == 0x484e4b00 // Nintendo DSi Sound
|
||||
)) || (h->tid_high == 0x00030015 && (
|
||||
tidLow == 0x484e4200 || // System Settings
|
||||
tidLow == 0x484e4600 // Nintendo DSi Shop
|
||||
tidLow == 0x484e4600 || // Nintendo DSi Shop
|
||||
tidLow == 0x30535500 || // Twl SystemUpdater
|
||||
tidLow == 0x34544e00 || // TwlNmenu
|
||||
tidLow == 0x54574c00 // TWL EVA
|
||||
)) || (h->tid_high == 0x00030017 && (
|
||||
tidLow == 0x484e4100 // Launcher
|
||||
))) && (
|
||||
|
||||
@ -159,9 +159,9 @@ static void generateList(Menu* m)
|
||||
blacklisted = true;
|
||||
|
||||
// also blacklist specific all-region titles
|
||||
if (strcmp("484e4441", ent->d_name) == 0 || // Download Play
|
||||
("484e4541", ent->d_name) == 0 || // PictoChat
|
||||
("34544e41", ent->d_name) == 0) // TwlNmenu
|
||||
if ((strcmp("484e4441", ent->d_name) == 0) || // Download Play
|
||||
(strcmp("484e4541", ent->d_name) == 0) || // PictoChat
|
||||
(strcmp("34544e41", ent->d_name) == 0)) // TwlNmenu
|
||||
blacklisted = true;
|
||||
}
|
||||
if (blacklisted) continue;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user