From 5b08a4311bd671015960c2a266e09af4fe63340c Mon Sep 17 00:00:00 2001 From: applestash Date: Wed, 16 Jul 2014 01:19:34 +1000 Subject: [PATCH] misc now properly defaults to cfa when no cxi CLI options were applied --- makerom/user_settings.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/makerom/user_settings.c b/makerom/user_settings.c index a2e8ffd..89669e4 100644 --- a/makerom/user_settings.c +++ b/makerom/user_settings.c @@ -626,11 +626,12 @@ int CheckArgumentCombination(user_settings *set) } if(set->common.outFormat == NCCH){ + set->ncch.buildNcch0 = true; if(set->ncch.ncchType) set->common.outFormat = set->ncch.ncchType; else{ - set->ncch.ncchType = CXI; - set->common.outFormat = CXI; + set->ncch.ncchType = CFA; + set->common.outFormat = CFA; } }