|
Problems using DVD drive May 31, 2010 11:29PM | Registered: 16 years ago Posts: 4 |
int main(int argc, char **argv)
{
//...
IOS_ReloadIOS(202);
if (IOS_GetVersion() == 202)
WIIDVD_Init(false);
printf("%d", IOS_GetVersion());
//...
}|
Re: Problems using DVD drive June 01, 2010 11:09PM | Moderator Registered: 17 years ago Posts: 441 |
// try to load IOS 202
if(IOS_GetVersion() != 202 && FindIOS(202))
IOS_ReloadIOS(202);
if(IOS_GetVersion() == 202)
{
DI_LoadDVDX(false);
DI_Init();
}|
Re: Problems using DVD drive June 02, 2010 12:59AM | Registered: 16 years ago Posts: 4 |
DI_LoadDVDX(false); DI_Init(); //Returns 4 //... ISO9660_Mount();
|
Re: Problems using DVD drive June 03, 2010 12:57AM | Moderator Registered: 17 years ago Posts: 441 |
|
Re: Problems using DVD drive June 03, 2010 01:59AM | Registered: 16 years ago Posts: 4 |
//Reload IOS 202
if (GetIosVersion() == 202)
{
DI_LoadDVDX(false);
DI_Init();
}
else exit(0);
//Init Video, WPADs, ...
if (ISO9660_Mount())
printf("DVD mounted\n");
else
printf("DVD could not be mounted\n");
//Wait for user to exitLIBS := -ldi -liso9660
|
Re: Problems using DVD drive June 03, 2010 05:08AM | Moderator Registered: 17 years ago Posts: 441 |
|
Re: Problems using DVD drive June 04, 2010 01:20AM | Registered: 16 years ago Posts: 4 |
|
Re: Problems using DVD drive June 04, 2010 05:00PM | Registered: 17 years ago Posts: 5,075 |