我正在做一个简单的猜圣经经文的游戏。让我感到困惑的是使用DrawText()
. 它说它应该是字符串,里面包含 %s ,但是我的数据是char
,所以它使用%c
,而不是%s
。所以,我尝试使用while循环。但它似乎不起作用。我被困了一整天。有任何想法吗?非常感谢。我是新手尝试制作游戏。
我想做的是这样的:
BeginDrawing();
DrawText(TextFormat(" %d:%d ", surahChoice, ayatChoice), 242, 260, 20, MAROON);
//name of surah:
while(*ptrTheSurah != '\n')
{
DrawText(TextFormat(" %c", theSurahString), 242, 260, 20, MAROON);
DrawText(" ",242,260,20,MAROON);
ptrTheSurah++;
}
EndDrawing();