I want to do something like this (showing what FPS im running at in my SDL game):
SDL_WM_SetCaption("FPS: " + GetTicks(&fps)/1000.f, NULL); But Visual Studio intellisens complains that expression must have integral or enum type.
What have i done wrong?
std::string.