mirror of
https://github.com/nitraiolo/CfgUSBLoader.git
synced 2024-11-23 19:59:19 +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(".");
|
||||
}
|
||||
|
||||
// mload ehc & dip
|
||||
if (CFG.ios_mload) {
|
||||
ret = load_ehc_module_ex(verbose);
|
||||
if (ret < 0) {
|
||||
//if (verbose) {
|
||||
printf("\n");
|
||||
printf_x(gt("ERROR: Loading EHC module! (%d)"), ret);
|
||||
printf("\n");
|
||||
//}
|
||||
goto err;
|
||||
// mload ehc & dip only for cIOS
|
||||
if (CFG.ios >= 202) {
|
||||
if (CFG.ios_mload) {
|
||||
ret = load_ehc_module_ex(verbose);
|
||||
if (ret < 0) {
|
||||
//if (verbose) {
|
||||
printf("\n");
|
||||
printf_x(gt("ERROR: Loading EHC module! (%d)"), ret);
|
||||
printf("\n");
|
||||
//}
|
||||
goto err;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (is_ios_type(IOS_TYPE_WANIN) && IOS_GetRevision() >= 18) {
|
||||
//load_dip_249();
|
||||
mk_mload_version();
|
||||
|
Loading…
Reference in New Issue
Block a user