2回目の呼び出しのための微修正

git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@194 b08762b0-b915-fc4b-9d8c-17b2551a87ff
This commit is contained in:
yutaka 2007-11-16 05:21:16 +00:00
parent 4782314361
commit 1b25781aba

View File

@ -65,12 +65,12 @@ static int menu_fd = -1;
*---------------------------------------------------------------------------*/
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)
{
return FALSE;
}
menufile[0] += (char)driveno;
menufile[0] = (char)('A' + driveno);
menu_fd = po_open((u8*)menufile, PO_BINARY, 0);
if (menu_fd < 0)
{