ページ 11

DXライブラリportableでの文字出力

Posted: 2013年11月27日(水) 23:53
by クラン
DXライブラリportableでの文字出力ができません
どこが悪いですか。
void action(void)
{
while(1)
{

ClearDrawScreen();
DrawString(0,0,"今日もいい天気だ",GetColor( 255,255,255),0) ;
DrawFormatString(0,10,GetColor( 255,255,255),"今日もいい天気です");
ScreenFlip();
Pad_Wait();
}
}
void Pad_Wait()
{
do {
ProcessMessage();
}while(CheckHitKeyAll() == 0);
}