
Originally Posted by
Chossy
forgive my ignorance but how do you draw text with this ?
Its simplie:
Code:
// I used Hello_Wolrd source of Slynk as refrence.
float x = 100;
float y = 100;
void DrawFont() {
dbgFontPrintf(x,y,1.5f,"Hello World");
dbgFontDraw();
}
When I implemented to show which button is pressed into the Hello World source I ended with hanging on Install my PKG:
Code:
if(padData.button[2]&CELL_PAD_CTRL_LEFT)
{
x--;
dbgFontPrintf(100,100,1.5f,"Left Stick"); // right would be 100,200
dbgFontDraw();
}
Dunno why it hangs on Install that PKG, still trying to figure out.