mirror of
https://github.com/rvtr/TwlIPL.git
synced 2025-10-31 06:01:12 -04:00
2回目の呼び出しのための微修正
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@194 b08762b0-b915-fc4b-9d8c-17b2551a87ff
This commit is contained in:
parent
4782314361
commit
1b25781aba
@ -65,12 +65,12 @@ static int menu_fd = -1;
|
|||||||
*---------------------------------------------------------------------------*/
|
*---------------------------------------------------------------------------*/
|
||||||
BOOL FATFS_OpenRecentMenu( int driveno )
|
BOOL FATFS_OpenRecentMenu( int driveno )
|
||||||
{
|
{
|
||||||
char *menufile = (char*)L"A:\\ipl\\menu.srl";
|
char *menufile = (char*)L"A:\\title_e\\00010001\\43414d54\\content\\12123434.app";
|
||||||
if (driveno < 0 || driveno >= 26)
|
if (driveno < 0 || driveno >= 26)
|
||||||
{
|
{
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
menufile[0] += (char)driveno;
|
menufile[0] = (char)('A' + driveno);
|
||||||
menu_fd = po_open((u8*)menufile, PO_BINARY, 0);
|
menu_fd = po_open((u8*)menufile, PO_BINARY, 0);
|
||||||
if (menu_fd < 0)
|
if (menu_fd < 0)
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user