mirror of
https://github.com/retro100/dosbox-wii.git
synced 2025-01-26 08:45:36 +01:00
check/reload IOS
This commit is contained in:
parent
5c16da723c
commit
2b06327229
@ -194,8 +194,56 @@ void USBGeckoOutput()
|
|||||||
devoptab_list[STD_ERR] = &gecko_out;
|
devoptab_list[STD_ERR] = &gecko_out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static bool FindIOS(u32 ios)
|
||||||
|
{
|
||||||
|
s32 ret;
|
||||||
|
u32 n;
|
||||||
|
|
||||||
|
u64 *titles = NULL;
|
||||||
|
u32 num_titles=0;
|
||||||
|
|
||||||
|
ret = ES_GetNumTitles(&num_titles);
|
||||||
|
if (ret < 0)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
if(num_titles < 1)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
titles = (u64 *)memalign(32, num_titles * sizeof(u64) + 32);
|
||||||
|
if (!titles)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
ret = ES_GetTitles(titles, num_titles);
|
||||||
|
if (ret < 0)
|
||||||
|
{
|
||||||
|
free(titles);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
for(n=0; n < num_titles; n++)
|
||||||
|
{
|
||||||
|
if((titles[n] & 0xFFFFFFFF)==ios)
|
||||||
|
{
|
||||||
|
free(titles);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
free(titles);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
void WiiInit()
|
void WiiInit()
|
||||||
{
|
{
|
||||||
|
u32 version = IOS_GetVersion();
|
||||||
|
|
||||||
|
if(version != 58)
|
||||||
|
{
|
||||||
|
if(FindIOS(58))
|
||||||
|
IOS_ReloadIOS(58);
|
||||||
|
else if((version < 61 || version >= 200) && FindIOS(61))
|
||||||
|
IOS_ReloadIOS(61);
|
||||||
|
}
|
||||||
|
|
||||||
extern const devoptab_t dotab_stdnull;
|
extern const devoptab_t dotab_stdnull;
|
||||||
devoptab_list[STD_OUT] = &dotab_stdnull;
|
devoptab_list[STD_OUT] = &dotab_stdnull;
|
||||||
devoptab_list[STD_ERR] = &dotab_stdnull;
|
devoptab_list[STD_ERR] = &dotab_stdnull;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user