in my code at the moment im using
Code: Select all
sceRtcGetCurrentClockLocalTime(&myTime);
My problem is that i can print to the screen myTime.day
Code: Select all
oslPrintf_xy(11, 4, "%i", myTime.day);
it only ever prints 0 to the screen, i need to be able to store it in a variable so i can manipulate the numbers and use them for counting etc. but the only variable that is stored is 0, and this is the same for myTime.month, and myTime.year
i cant see what is going on here cause the print perfectly to the screen just using myTime.day