mirror of
https://github.com/rvtr/TwlIPL.git
synced 2025-10-31 06:01:12 -04:00
アプリに引き渡すタイトルリストのジャンプ可能フラグをONにする条件に次のものを追加
・これからブートするアプリ自身である ・A→Bというアプリジャンプの場合、Aを入れる git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@1634 b08762b0-b915-fc4b-9d8c-17b2551a87ff
This commit is contained in:
parent
df75b3245b
commit
699759fdfc
@ -1842,8 +1842,10 @@ static void SYSMi_makeTitleIdList( void )
|
||||
list->sameMakerFlag[count/8] |= (u8)(0x1 << (count%8));
|
||||
}
|
||||
|
||||
// ジャンプ可能ならば
|
||||
if( p_info->permit_landing_normal_jump )
|
||||
// ジャンプ可能フラグON or ブートアプリ自身 or ジャンプ元アプリ ならばジャンプ可能
|
||||
if( p_info->permit_landing_normal_jump || hs->titleID == id ||
|
||||
( SYSMi_GetWork()->flags.common.isValidLauncherParam && SYSM_GetLauncherParamBody()->v1.bootTitleID && ( SYSM_GetLauncherParamBody()->v1.prevTitleID == id ) )
|
||||
)
|
||||
{
|
||||
// リストに追加してジャンプ可能フラグON
|
||||
list->TitleID[count] = id;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user