GC - avoid mload reload on ios 58 before nintendont startup

This commit is contained in:
Nitraiolo 2015-01-17 11:46:00 +00:00
parent cc9fe8e1ca
commit e05df33fc4

View File

@ -717,7 +717,8 @@ int ReloadIOS(int subsys, int verbose)
printf("."); printf(".");
} }
// mload ehc & dip // mload ehc & dip only for cIOS
if (CFG.ios >= 202) {
if (CFG.ios_mload) { if (CFG.ios_mload) {
ret = load_ehc_module_ex(verbose); ret = load_ehc_module_ex(verbose);
if (ret < 0) { if (ret < 0) {
@ -729,7 +730,7 @@ int ReloadIOS(int subsys, int verbose)
goto err; goto err;
} }
} }
}
if (is_ios_type(IOS_TYPE_WANIN) && IOS_GetRevision() >= 18) { if (is_ios_type(IOS_TYPE_WANIN) && IOS_GetRevision() >= 18) {
//load_dip_249(); //load_dip_249();
mk_mload_version(); mk_mload_version();