mirror of
https://github.com/rvtr/unlaunch-installer_dev.git
synced 2026-01-26 13:43:08 -05:00
Fix some dumb mistakes
This commit is contained in:
parent
12cd316538
commit
3b8240332e
@ -223,15 +223,15 @@ int main(int argc, char **argv)
|
|||||||
|
|
||||||
sprintf(launcherTmdPath, "nand:/title/00030017/%08lx/content/title.tmd", launcherTid);
|
sprintf(launcherTmdPath, "nand:/title/00030017/%08lx/content/title.tmd", launcherTid);
|
||||||
unsigned long long tmdSize = getFileSizePath(launcherTmdPath);
|
unsigned long long tmdSize = getFileSizePath(launcherTmdPath);
|
||||||
if(tmdSize != 520)
|
if (tmdSize > 520)
|
||||||
{
|
|
||||||
hasTitleTmdMatchingLauncher = false;
|
|
||||||
}
|
|
||||||
else if (tmdSize > 520)
|
|
||||||
{
|
{
|
||||||
unlaunchFound = true;
|
unlaunchFound = true;
|
||||||
unlaunchPatches = checkIfUnlaunchHasPatches(launcherTmdPath);
|
unlaunchPatches = checkIfUnlaunchHasPatches(launcherTmdPath);
|
||||||
}
|
}
|
||||||
|
else if(tmdSize != 520)
|
||||||
|
{
|
||||||
|
hasTitleTmdMatchingLauncher = false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!unlaunchFound)
|
if (!unlaunchFound)
|
||||||
@ -364,7 +364,7 @@ int main(int argc, char **argv)
|
|||||||
fclose(targetTmd);
|
fclose(targetTmd);
|
||||||
|
|
||||||
//Mark the tmd as readonly
|
//Mark the tmd as readonly
|
||||||
int fatAttributes = FAT_getAttr("nand:/title/00030017/484e4141/content/title.tmd");
|
/*int fatAttributes = FAT_getAttr("nand:/title/00030017/484e4141/content/title.tmd");
|
||||||
if(!FAT_setAttr("nand:/title/00030017/484e4141/content/title.tmd", fatAttributes | ATTR_READONLY) != 0)
|
if(!FAT_setAttr("nand:/title/00030017/484e4141/content/title.tmd", fatAttributes | ATTR_READONLY) != 0)
|
||||||
{
|
{
|
||||||
messageBox("\x1B[31mError:\x1B[33m Failed to mark unlaunch's title.tmd as read only\n");
|
messageBox("\x1B[31mError:\x1B[33m Failed to mark unlaunch's title.tmd as read only\n");
|
||||||
@ -373,7 +373,7 @@ int main(int argc, char **argv)
|
|||||||
rmdir("nand:/title/00030017/484e4141");
|
rmdir("nand:/title/00030017/484e4141");
|
||||||
nandio_lock_writing();
|
nandio_lock_writing();
|
||||||
break;
|
break;
|
||||||
}
|
}*/
|
||||||
|
|
||||||
//Finally patch the default launcher tmd to be invalid
|
//Finally patch the default launcher tmd to be invalid
|
||||||
|
|
||||||
@ -391,7 +391,6 @@ int main(int argc, char **argv)
|
|||||||
nandio_lock_writing();
|
nandio_lock_writing();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
FILE * f = fopen("title.tmd", "r+b");
|
|
||||||
// Patches the title.tmd's title id from HNXX to GNXX
|
// Patches the title.tmd's title id from HNXX to GNXX
|
||||||
fseek(launcherTmd, 0x190, SEEK_SET);
|
fseek(launcherTmd, 0x190, SEEK_SET);
|
||||||
char c;
|
char c;
|
||||||
@ -401,7 +400,7 @@ int main(int argc, char **argv)
|
|||||||
{
|
{
|
||||||
fseek(launcherTmd, -1, SEEK_CUR);
|
fseek(launcherTmd, -1, SEEK_CUR);
|
||||||
c = 0x47;
|
c = 0x47;
|
||||||
fwrite(&launcherTmd, 1, 1, f);
|
fwrite(&c, 1, 1, launcherTmd);
|
||||||
}
|
}
|
||||||
else if(c != 0x47)
|
else if(c != 0x47)
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user