Oh, please ignore my comment. I thought we were talking about strcat(). I need some rest. ;)
lol, I know that feeling.
As a side note:
[source lang="cpp"]_itoa_s(fps, tempS, 10);strcpy_s(fpsS, "FPS: ");strcat_s(fpsS, tempS);[/source]
Could be:
[source lang="cpp"]sprintf_s(fpsS, "FPS: %i", tempS);[/source]
If you want to use C style string handling.