diff --git a/build/systemMenu_tools/NandInitializerProduction/ARM9.TWL/Makefile b/build/systemMenu_tools/NandInitializerProduction/ARM9.TWL/Makefile index a1f9e8e4..a387d865 100644 --- a/build/systemMenu_tools/NandInitializerProduction/ARM9.TWL/Makefile +++ b/build/systemMenu_tools/NandInitializerProduction/ARM9.TWL/Makefile @@ -26,6 +26,18 @@ # NandInitializerRedと同様の動作をしますが自動フォーマットが強制的に実行され停止します。 MACRO_FLAGS += -DAUTO_FORMAT_MODE #============================================================================ +#============================================================================ +# ワイヤレスの強制Disableフラグを設定可能にする場合定義します。(要:Make Clean) +MACRO_FLAGS += -DUSE_WIRELESS_FORCE_DISABLE_SETTING +#============================================================================ +#============================================================================ +# フォントデータを書き込み可能にする場合定義します。(要:Make Clean) +MACRO_FLAGS += -DUSE_WRITE_FONT_DATA +#============================================================================ +#============================================================================ +# マリクラデバッグ用に製品本体での起動を抑制する場合定義します。(要:Make Clean) +#MACRO_FLAGS += -DMARIOCLUB_VERSION +#============================================================================ DISABLE_DEBUG = TRUE @@ -63,6 +75,7 @@ SRCS = main.c \ process_auto.c \ process_fade.c \ process_font.c \ + process_wireless_setting.c \ sd_event.c \ hwi.c diff --git a/build/systemMenu_tools/NandInitializerRed/ARM9.TWL/src/process_auto.c b/build/systemMenu_tools/NandInitializerRed/ARM9.TWL/src/process_auto.c index 82c8f3ea..97556f6f 100644 --- a/build/systemMenu_tools/NandInitializerRed/ARM9.TWL/src/process_auto.c +++ b/build/systemMenu_tools/NandInitializerRed/ARM9.TWL/src/process_auto.c @@ -109,7 +109,11 @@ void* AutoProcess1(void) case 4: return ImportProcess0; case 5: +#ifndef MARIOCLUB_VERSION return NandfirmProcess0; +#else + return AutoProcess2; +#endif //MARIOCLUB_VERSION case 6: return AutoProcess2; } @@ -152,10 +156,12 @@ void* AutoProcess2(void) kamiFontPrintf(3, 11, FONT_COLOR_BLACK, " WRITE FONT DATA "); kamiFontPrintf(3, 13, FONT_COLOR_BLACK, " WRITE ETICKET SIGN "); kamiFontPrintf(3, 15, FONT_COLOR_BLACK, " INPORT TAD FROM SD "); +#ifndef MARIOCLUB_VERSION kamiFontPrintf(3, 17, FONT_COLOR_BLACK, " INPORT NANDFIRM FROM SD"); +#endif //MARIOCLUB_VERSION #ifndef AUTO_FORMAT_MODE kamiFontPrintf(3, 22, FONT_COLOR_BLACK, " Button B : return to menu"); -#endif +#endif //AUTO_FORMAT_MODE for (i=0;i