mirror of
https://github.com/modmii/YAWM-ModMii-Edition.git
synced 2024-11-22 08:09:18 +01:00
nevermind, checking the other way around too
This commit is contained in:
parent
7cc66cc0a1
commit
e49d9a8850
29
source/wad.c
29
source/wad.c
@ -1173,6 +1173,7 @@ s32 Wad_Uninstall(FILE *fp)
|
|||||||
wadHeader *header = NULL;
|
wadHeader *header = NULL;
|
||||||
tikview *viewData = NULL;
|
tikview *viewData = NULL;
|
||||||
signed_blob *s_tik = NULL;
|
signed_blob *s_tik = NULL;
|
||||||
|
signed_blob *s_tmd = NULL;
|
||||||
|
|
||||||
u64 tid;
|
u64 tid;
|
||||||
u32 viewCnt;
|
u32 viewCnt;
|
||||||
@ -1197,12 +1198,12 @@ s32 Wad_Uninstall(FILE *fp)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Get ticket */
|
/* Get ticket */
|
||||||
u32 tik_offset = 0;
|
u32 offset = 0;
|
||||||
tik_offset += round_up(header->header_len, 0x40);
|
offset += round_up(header->header_len, 0x40);
|
||||||
tik_offset += round_up(header->certs_len, 0x40);
|
offset += round_up(header->certs_len, 0x40);
|
||||||
tik_offset += round_up(header->crl_len, 0x40);
|
offset += round_up(header->crl_len, 0x40);
|
||||||
|
|
||||||
ret = FSOPReadOpenFileA(fp, (void*)&s_tik, tik_offset, header->tik_len);
|
ret = FSOPReadOpenFileA(fp, (void*)&s_tik, offset, header->tik_len);
|
||||||
if (ret != 1) {
|
if (ret != 1) {
|
||||||
printf(" ERROR! (ret = %d)\n", ret);
|
printf(" ERROR! (ret = %d)\n", ret);
|
||||||
goto out;
|
goto out;
|
||||||
@ -1212,6 +1213,15 @@ s32 Wad_Uninstall(FILE *fp)
|
|||||||
tik *ticket = SIGNATURE_PAYLOAD(s_tik);
|
tik *ticket = SIGNATURE_PAYLOAD(s_tik);
|
||||||
tid = ticket->titleid;
|
tid = ticket->titleid;
|
||||||
|
|
||||||
|
offset += round_up(header->tik_len, 0x40);
|
||||||
|
ret = FSOPReadOpenFileA(fp, (void*)&s_tmd, offset, header->tmd_len);
|
||||||
|
if (ret != 1) {
|
||||||
|
printf(" ERROR! (ret = %d)\n", ret);
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
|
tmd* tmd_data = SIGNATURE_PAYLOAD(s_tmd);
|
||||||
|
|
||||||
//Assorted Checks
|
//Assorted Checks
|
||||||
if (TITLE_UPPER(tid) == 0x1)
|
if (TITLE_UPPER(tid) == 0x1)
|
||||||
{
|
{
|
||||||
@ -1221,15 +1231,18 @@ s32 Wad_Uninstall(FILE *fp)
|
|||||||
ret = -999;
|
ret = -999;
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
if (isvWiiTitle && !IS_WIIU && !skipRegionSafetyCheck) // Only this way around this time
|
if (((isvWiiTitle || tmd_data->vwii_title) ^ IS_WIIU) && !skipRegionSafetyCheck) // Only this way around this time // Ehh nvm
|
||||||
{
|
{
|
||||||
printf("\n"
|
printf("\n"
|
||||||
" Attempting to uninstall a vWii IOS WAD.\n\n"
|
" Attempting to uninstall a Wii IOS WAD on vWii.\n"
|
||||||
|
" or a vWii IOS WAD on Wii.\n\n"
|
||||||
|
|
||||||
|
" Maybe you installed one on accident before?\n\n"
|
||||||
|
|
||||||
" If you're sure about what you're doing, input\n"
|
" If you're sure about what you're doing, input\n"
|
||||||
" the Konami code on the device screen. Have fun.\n");
|
" the Konami code on the device screen. Have fun.\n");
|
||||||
|
|
||||||
ret = -990;
|
ret = -999;
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
if (tid == TITLE_ID(1, 1))
|
if (tid == TITLE_ID(1, 1))
|
||||||
|
Loading…
Reference in New Issue
Block a user