mirror of
https://github.com/rvtr/TwlIPL.git
synced 2025-10-31 06:01:12 -04:00
権利関係がクリアになるまでフォントはデフォルトではNANDに書き込まないように変更。
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@1464 b08762b0-b915-fc4b-9d8c-17b2551a87ff
This commit is contained in:
parent
05c2c896dd
commit
e6249d6fee
@ -629,8 +629,8 @@ BOOL NAMUT_UpdateSoftBoxCount( void )
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
OS_Printf("installedSoftBoxCount = %d\n", installedSoftBoxCount);
|
||||
OS_Printf("freeSoftBoxCount = %d\n", freeSoftBoxCount);
|
||||
// OS_Printf("installedSoftBoxCount = %d\n", installedSoftBoxCount);
|
||||
// OS_Printf("freeSoftBoxCount = %d\n", freeSoftBoxCount);
|
||||
|
||||
// LCFGライブラリの静的変数に対する更新
|
||||
LCFG_TSD_SetInstalledSoftBoxCount( installedSoftBoxCount );
|
||||
|
||||
@ -31,7 +31,7 @@ MACRO_FLAGS += -DUSE_WIRELESS_FORCE_DISABLE_SETTING
|
||||
#============================================================================
|
||||
#============================================================================
|
||||
# フォントデータを書き込み可能にする場合定義します。(要:Make Clean)
|
||||
MACRO_FLAGS += -DUSE_WRITE_FONT_DATA
|
||||
#MACRO_FLAGS += -DUSE_WRITE_FONT_DATA
|
||||
#============================================================================
|
||||
#============================================================================
|
||||
# マリクラデバッグ用に製品本体での起動を抑制する場合定義します。(要:Make Clean)
|
||||
|
||||
@ -22,7 +22,6 @@
|
||||
#include "process_hw_info.h"
|
||||
#include "process_import.h"
|
||||
#include "process_font.h"
|
||||
//#include "process_eticket.h"
|
||||
#include "process_nandfirm.h"
|
||||
#include "process_norfirm.h"
|
||||
#include "process_auto.h"
|
||||
@ -148,6 +147,7 @@ void* AutoProcess1(void)
|
||||
void* AutoProcess2(void)
|
||||
{
|
||||
int i;
|
||||
s8 line = 5;
|
||||
u8 bg_color;
|
||||
|
||||
// 文字列全クリア
|
||||
@ -164,13 +164,14 @@ void* AutoProcess2(void)
|
||||
kamiFontPrintf(0, 2, FONT_COLOR_BLACK, "--------------------------------");
|
||||
|
||||
// メニュー一覧
|
||||
kamiFontPrintf(3, 7, FONT_COLOR_BLACK, " FORMAT NAND ");
|
||||
kamiFontPrintf(3, 9, FONT_COLOR_BLACK, " WRITE HARDWARE INFO ");
|
||||
kamiFontPrintf(3, 11, FONT_COLOR_BLACK, " WRITE FONT DATA ");
|
||||
// kamiFontPrintf(3, 13, FONT_COLOR_BLACK, " WRITE ETICKET SIGN ");
|
||||
kamiFontPrintf(3, 13, FONT_COLOR_BLACK, " INPORT TAD FROM SD ");
|
||||
kamiFontPrintf(3, line += 2, FONT_COLOR_BLACK, " FORMAT NAND ");
|
||||
kamiFontPrintf(3, line += 2, FONT_COLOR_BLACK, " WRITE HARDWARE INFO ");
|
||||
#ifdef USE_WRITE_FONT_DATA
|
||||
kamiFontPrintf(3, line += 2, FONT_COLOR_BLACK, " WRITE FONT DATA ");
|
||||
#endif // USE_WRITE_FONT_DATA
|
||||
kamiFontPrintf(3, line += 2, FONT_COLOR_BLACK, " INPORT TAD FROM SD ");
|
||||
#ifndef MARIOCLUB_VERSION
|
||||
kamiFontPrintf(3, 15, FONT_COLOR_BLACK, " INPORT NANDFIRM FROM SD");
|
||||
kamiFontPrintf(3, line += 2, 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");
|
||||
|
||||
Loading…
Reference in New Issue
Block a user