float fLastTickCount = 0.0f;
float fCurrentTickCount;
char cFrameRate[30];
fCurrentTickCount = clock() * 0.001f;
noFps++;
if((fCurrentTickCount - fLastTickCount) > 1.0f)
{
fLastTickCount = fCurrentTickCount;
sprintf(FPSxD, "%d", noFps);
noFps = 0;
}
char date[20]; struct tm * current_tm; time_t current_time; time (¤t_time); current_tm = localtime (¤t_time); sprintf( DatexD, "%d-%02d-%d",current_tm->tm_mon+1,current_tm->tm_mday,current_tm->tm_year-100+2000);
#include <time.h> char date[20]; struct tm * current_tm; time_t current_time; time (¤t_time); current_tm = localtime (¤t_time); sprintf( TimexD,"%02d:%02d:%02d", current_tm->tm_hour, current_tm->tm_min, current_tm->tm_sec );


is now without the "/" at beginning xD