Ok, i have enough room for 20 characters to fit until the title will need to scroll... Im having it delay 1/2 second which is used via:
sceKernelDelayThread(250000*2);
This isnt for windows, so thats my delay right there...
Ok, so far ive been thinking how the
im going to do this... so im just guessing here...(the string is just an example, its actually set to the name...)
Code:
char title[] = "abcdefghijklmnopqrstuvwxyz";
int titleLength = strlen(title), overChars;
int scrollDistance;
int titleX = 50, titleY = 5;
while (1) {
printTextScreen(titleX-scrollDistance, titleY, title, RGBA(255,255,255,100));
if ( titleLength > 20 ) {
overChars = titleLength - 20;
scrollDistance = overChars * 7;
sceKernelDelayThread(250000*2);
}
}
i know a for loop is necessary... could someone help me out on this?


