#90778 - spinal_cord - Sun Jul 02, 2006 10:58 am
I have what I assume is a simple, rather silly problem. I'm trying to add a title screen to my (hardly started) game, but for some reason I cant get it wo wait for start to be pressed before continuing. Can someone tell me what im doing wrong?
Is this a good way to do this? (appart from it not working).
_________________
I'm not a boring person, it's just that boring things keep happening to me.
Homepage
Code: |
void title(void) { PA_LoadTiledBg(0, 3, title); PA_LoadTiledBg(1, 3, title1); int st=0; while(st==0) { if(Pad.Newpress.Start){st=1;} } } |
Is this a good way to do this? (appart from it not working).
_________________
I'm not a boring person, it's just that boring things keep happening to me.
Homepage