アプリに引き渡すタイトルリストのジャンプ可能フラグを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:
yoshida_teruhisa 2008-06-16 08:01:37 +00:00
parent df75b3245b
commit 699759fdfc

View File

@ -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;