reigel
Joined: 15 Jul 2005 Posts: 14
|
Posted: Fri Jul 15, 2005 10:43 pm Post subject: Noob question! |
|
|
Hi,
can someone say me why this not work for me?
| Code: |
#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);
}
}
|
Thx |
|