add IOS5 rev 65280 to list of Stub IOS

This commit is contained in:
Christopher Roy Bratusek 2016-08-14 19:35:48 +02:00
parent a9909b7a48
commit 172059439c
2 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,6 @@ string new_update(string rev, string filename)
sprintf(url, "http://www.nanolx.org/hbf/DOL.vwii/Beta/%s", filename.c_str());
else
sprintf(url, "http://www.nanolx.org/hbf/DOL.vwii/rev%s/%s", rev.c_str(), filename.c_str());
#elif STBOOT
if(rev == "Beta")
sprintf(url, "http://www.nanolx.org/hbf/DOL.st/Beta/%s", filename.c_str());

View File

@ -192,6 +192,7 @@ bool IsKnownStub(u32 noIOS, s32 noRevision)
{
if (noIOS == 3 && noRevision == 65280) return true;
if (noIOS == 4 && noRevision == 65280) return true;
if (noIOS == 5 && noRevision == 65280) return true;
if (noIOS == 10 && noRevision == 768) return true;
if (noIOS == 11 && noRevision == 256) return true;
if (noIOS == 16 && noRevision == 512) return true;
@ -426,7 +427,7 @@ int get_bootmii()
return 3;
else
#endif
return bootmii;
return bootmii;
}
void set_bootmii(int choice)