diff --git a/build/tests/SimpleBenchmark/ARM9/src/SimpleBenchmark.c b/build/tests/SimpleBenchmark/ARM9/src/SimpleBenchmark.c index 568c49a1..95ad3985 100644 --- a/build/tests/SimpleBenchmark/ARM9/src/SimpleBenchmark.c +++ b/build/tests/SimpleBenchmark/ARM9/src/SimpleBenchmark.c @@ -62,6 +62,7 @@ void SimpleBenchmarkMain(void) { BOOL tp_cancel = FALSE; OSTick ot; + static u64 tm = 0; ReadTP(); // タッチパネル入力の取得 @@ -74,8 +75,7 @@ void SimpleBenchmarkMain(void) ot = OS_GetTick(); NNS_G2dCharCanvasClear( &gCanvas, TXT_COLOR_WHITE ); - PutStringUTF16( 1 * 8, 0 * 8, TXT_COLOR_BLUE, (const u16 *)L"SimpleBenchmarkTestSimpleBenchmarkTest"); - PutStringUTF16( 1 * 8, 1 * 8, TXT_COLOR_BLUE, (const u16 *)L"SimpleBenchmarkTestSimpleBenchmarkTest"); + PrintfSJIS( 0 * 8, 0 * 8, TXT_COLOR_RED, "%d\n",tm); PutStringUTF16( 1 * 8, 2 * 8, TXT_COLOR_BLUE, (const u16 *)L"SimpleBenchmarkTestSimpleBenchmarkTest"); PutStringUTF16( 1 * 8, 3 * 8, TXT_COLOR_BLUE, (const u16 *)L"SimpleBenchmarkTestSimpleBenchmarkTest"); PutStringUTF16( 1 * 8, 4 * 8, TXT_COLOR_BLUE, (const u16 *)L"SimpleBenchmarkTestSimpleBenchmarkTest"); @@ -99,7 +99,9 @@ void SimpleBenchmarkMain(void) PutStringUTF16( 1 * 8, 22 * 8, TXT_COLOR_BLUE, (const u16 *)L"SimpleBenchmarkTestSimpleBenchmarkTest"); ot = OS_GetTick()-ot; - OS_TPrintf("%d\n", OS_TicksToMicroSeconds(ot)); + tm = OS_TicksToMicroSeconds(ot); + + OS_TPrintf("%d\n", tm); if( ( pad.trg & PAD_BUTTON_A ) ) { } diff --git a/build/tests/SimpleBenchmark/banner/test-utf16_0_v3.TWL.bsf b/build/tests/SimpleBenchmark/banner/test-utf16_0_v3.TWL.bsf index 1e2379a9..f59e3078 100644 Binary files a/build/tests/SimpleBenchmark/banner/test-utf16_0_v3.TWL.bsf and b/build/tests/SimpleBenchmark/banner/test-utf16_0_v3.TWL.bsf differ diff --git a/build/tests/SimpleBenchmark/banner/test-utf16_1_v3.TWL.bsf b/build/tests/SimpleBenchmark/banner/test-utf16_1_v3.TWL.bsf index ebe6be91..462ba007 100644 Binary files a/build/tests/SimpleBenchmark/banner/test-utf16_1_v3.TWL.bsf and b/build/tests/SimpleBenchmark/banner/test-utf16_1_v3.TWL.bsf differ