can someone say me why this not work for me?
Code: Select all
#include "pg.h"
#include "psp.h"
int xmain(void)
{
unsigned long fc;
unsigned long r,g,b,rgb;
pgInit();
pgScreenFrame(2,0);
if( CTRL_START )
{
pgFillvram(0);
pgPrint(0,1,0xffff,"Test22");
pgScreenFlipV();
pgWaitVn(200);
}
if(CTRL_SELECT)
{
pgFillvram(0);
pgPrint(0,1,0xffff,"Test1");
pgScreenFlipV();
pgWaitVn(200);
}
}