mirror of
https://github.com/rvtr/TwlIPL.git
synced 2025-10-31 06:01:12 -04:00
small fix
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@1265 b08762b0-b915-fc4b-9d8c-17b2551a87ff
This commit is contained in:
parent
98537e3ef1
commit
c77e040990
@ -721,9 +721,10 @@ static AuthResult SYSMi_AuthenticateTWLHeader( TitleProperty *pBootTitle )
|
||||
// NANDアプリの場合、NAM_CheckTitleLaunchRights()を呼んでチェック
|
||||
if( pBootTitle->flags.bootType == LAUNCHER_BOOTTYPE_NAND )
|
||||
{
|
||||
if( NAM_OK != NAM_CheckTitleLaunchRights( pBootTitle->titleID ))
|
||||
s32 result = NAM_CheckTitleLaunchRights( pBootTitle->titleID );
|
||||
if( NAM_OK != result)
|
||||
{
|
||||
OS_TPrintf("Authenticate failed: NAM_CheckTitleLaunchRights failed.\n");
|
||||
OS_TPrintf("Authenticate failed: NAM_CheckTitleLaunchRights failed. %d \n",result);
|
||||
return AUTH_RESULT_AUTHENTICATE_FAILED;
|
||||
}else
|
||||
{
|
||||
|
||||
@ -41,7 +41,7 @@ endif
|
||||
#
|
||||
|
||||
MAKEFBD ?= $(FBDDIR)/incre.exe
|
||||
MAKEFOB ?= $(TWLSDK_ROOT)/tools/bin/bin2obj.exe
|
||||
MAKEFOB ?= $(TWLSDK_ROOT)/tools/bin/bin2obj.TWL.exe
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
endif # TWL_RELOCATECHECKER_COMMONDEFS_
|
||||
|
||||
Loading…
Reference in New Issue
Block a user