Update credits, remove useless DLP version check
This commit is contained in:
parent
ad1dc51e06
commit
e04cb28711
@ -767,7 +767,7 @@ void patchCode(u64 progId, u16 progVer, u8 *code, u32 size)
|
|||||||
)) goto error;
|
)) goto error;
|
||||||
}
|
}
|
||||||
|
|
||||||
else if(CONFIG(ENABLEEXCEPTIONHANDLERS) && !CONFIG(PATCHUNITINFO) && progId == 0x0004003000008A02LL) //ErrDisp
|
else if(progId == 0x0004003000008A02LL && CONFIG(ENABLEEXCEPTIONHANDLERS) && !CONFIG(PATCHUNITINFO)) //ErrDisp
|
||||||
{
|
{
|
||||||
static const u8 pattern[] = {
|
static const u8 pattern[] = {
|
||||||
0x00, 0xD0, 0xE5, 0xDB
|
0x00, 0xD0, 0xE5, 0xDB
|
||||||
@ -794,7 +794,7 @@ void patchCode(u64 progId, u16 progVer, u8 *code, u32 size)
|
|||||||
) != 3) goto error;
|
) != 3) goto error;
|
||||||
}
|
}
|
||||||
|
|
||||||
else if(progId == 0x0004013000002802LL && progVer > 0) //DLP
|
else if(progId == 0x0004013000002802LL) //DLP
|
||||||
{
|
{
|
||||||
static const u8 pattern[] = {
|
static const u8 pattern[] = {
|
||||||
0x0C, 0xAC, 0xC0, 0xD8
|
0x0C, 0xAC, 0xC0, 0xD8
|
||||||
|
@ -22,10 +22,12 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* Signature patches by an unknown author
|
* Signature patches by an unknown author
|
||||||
|
* Signature patches for old FIRMs by SciresM
|
||||||
* firmlaunches patching code originally by delebile
|
* firmlaunches patching code originally by delebile
|
||||||
* FIRM partition writes patches by delebile
|
* FIRM partition writes patches by delebile
|
||||||
* ARM11 modules patching code originally by Subv
|
* ARM11 modules patching code originally by Subv
|
||||||
* Idea for svcBreak patches from yellows8 and others on #3dsdev
|
* Idea for svcBreak patches from yellows8 and others on #3dsdev
|
||||||
|
* TWL_FIRM patches by Steveice10 and others
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "patches.h"
|
#include "patches.h"
|
||||||
|
@ -22,10 +22,12 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* Signature patches by an unknown author
|
* Signature patches by an unknown author
|
||||||
|
* Signature patches for old FIRMs by SciresM
|
||||||
* firmlaunches patching code originally by delebile
|
* firmlaunches patching code originally by delebile
|
||||||
* FIRM partition writes patches by delebile
|
* FIRM partition writes patches by delebile
|
||||||
* ARM11 modules patching code originally by Subv
|
* ARM11 modules patching code originally by Subv
|
||||||
* Idea for svcBreak patches from yellows8 and others on #3dsdev
|
* Idea for svcBreak patches from yellows8 and others on #3dsdev
|
||||||
|
* TWL_FIRM patches by Steveice10 and others
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
Reference in New Issue
Block a user