mirror of
https://github.com/nitraiolo/CfgUSBLoader.git
synced 2024-11-27 13:44:17 +01:00
GC - avoid mload reload on ios 58 before nintendont startup
This commit is contained in:
parent
cc9fe8e1ca
commit
e05df33fc4
23
source/sys.c
23
source/sys.c
@ -717,19 +717,20 @@ int ReloadIOS(int subsys, int verbose)
|
|||||||
printf(".");
|
printf(".");
|
||||||
}
|
}
|
||||||
|
|
||||||
// mload ehc & dip
|
// mload ehc & dip only for cIOS
|
||||||
if (CFG.ios_mload) {
|
if (CFG.ios >= 202) {
|
||||||
ret = load_ehc_module_ex(verbose);
|
if (CFG.ios_mload) {
|
||||||
if (ret < 0) {
|
ret = load_ehc_module_ex(verbose);
|
||||||
//if (verbose) {
|
if (ret < 0) {
|
||||||
printf("\n");
|
//if (verbose) {
|
||||||
printf_x(gt("ERROR: Loading EHC module! (%d)"), ret);
|
printf("\n");
|
||||||
printf("\n");
|
printf_x(gt("ERROR: Loading EHC module! (%d)"), ret);
|
||||||
//}
|
printf("\n");
|
||||||
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();
|
||||||
|
Loading…
Reference in New Issue
Block a user