mirror of
https://github.com/rvtr/TwlIPL.git
synced 2025-10-31 06:01:12 -04:00
ファイルパス変換の誤りを修正。
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@138 b08762b0-b915-fc4b-9d8c-17b2551a87ff
This commit is contained in:
parent
6b08538d20
commit
0f8334a24e
@ -25,11 +25,13 @@ static BOOL FS_IdentifyTitle(u32 titleLo)
|
||||
// if (OS_GetBootType() == OS_BOOTTYPE_NAND)
|
||||
{
|
||||
char path[FS_ENTRY_LONGNAME_MAX];
|
||||
STD_TSPrintf(path, "nand:/title_e/00010001/%02X%02X%02X%02X/content/12123434.app",
|
||||
/* STD_TSPrintf(path, "nand:/title_e/00010001/%02X%02X%02X%02X/content/12123434.app",
|
||||
((titleLo / 1000) % 10) + '0',
|
||||
((titleLo / 100) % 10) + '0',
|
||||
((titleLo / 10) % 10) + '0',
|
||||
((titleLo / 1) % 10) + '0');
|
||||
*/
|
||||
STD_TSPrintf(path, "nand:/title_e/00010001/%08X/content/12123434.app", titleLo );
|
||||
if (!FS_IsAvailable())
|
||||
{
|
||||
FS_Init(FS_DMA_NOT_USE);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user