Example #1
0
bool CBoot::Boot_WiiWAD(const DiscIO::WiiWAD& wad)
{
  if (!WiiUtils::InstallWAD(*IOS::HLE::GetIOS(), wad, WiiUtils::InstallType::Temporary))
  {
    PanicAlertT("Cannot boot this WAD because it could not be installed to the NAND.");
    return false;
  }
  return BootNANDTitle(wad.GetTMD().GetTitleId());
}
Example #2
0
 bool operator()(const BootParameters::NANDTitle& nand_title) const
 {
   SetDefaultDisc();
   return BootNANDTitle(nand_title.id);
 }