Code: Select all
sceDisplayWaitVblankStart();
while (x < 480) {
while (y < 272) {
blitAlphaImageToScreen(0 ,0 ,480 , 272, ourImage, x, y);
y += 480;
}
x += 272;
y = 0;
What would I need to set the values of
Code: Select all
y +=
Code: Select all
x +=
Thanks in advance.