mirror of
https://github.com/DarkStore-3DS/Project_CTR.git
synced 2026-07-05 08:49:03 +00:00
Surface more makerom errors.
This commit is contained in:
@@ -68,7 +68,7 @@ int main(int argc, char *argv[])
|
|||||||
result = build_NCCH(set);
|
result = build_NCCH(set);
|
||||||
if(result < 0) {
|
if(result < 0) {
|
||||||
//fprintf(stderr,"[ERROR] %s generation failed\n",set->build_ncch_type == CXI? "CXI" : "CFA");
|
//fprintf(stderr,"[ERROR] %s generation failed\n",set->build_ncch_type == CXI? "CXI" : "CFA");
|
||||||
fprintf(stderr,"[RESULT] Failed to build outfile\n");
|
fprintf(stderr,"[RESULT] Failed to build NCCH (ret = %d)\n", result);
|
||||||
goto finish;
|
goto finish;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -76,7 +76,7 @@ int main(int argc, char *argv[])
|
|||||||
if(set->common.outFormat == CCI){
|
if(set->common.outFormat == CCI){
|
||||||
result = build_CCI(set);
|
result = build_CCI(set);
|
||||||
if(result < 0) {
|
if(result < 0) {
|
||||||
fprintf(stderr,"[RESULT] Failed to build CCI\n");
|
fprintf(stderr,"[RESULT] Failed to build CCI (ret = %d)\n", result);
|
||||||
goto finish;
|
goto finish;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -84,7 +84,7 @@ int main(int argc, char *argv[])
|
|||||||
else if(set->common.outFormat == CIA){
|
else if(set->common.outFormat == CIA){
|
||||||
result = build_CIA(set);
|
result = build_CIA(set);
|
||||||
if(result < 0) {
|
if(result < 0) {
|
||||||
fprintf(stderr,"[RESULT] Failed to build CIA\n");
|
fprintf(stderr,"[RESULT] Failed to build CIA (ret = %d)\n", result);
|
||||||
goto finish;
|
goto finish;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user