Hello,
if I use the IPAddress::ToString function I allways get a "Debug Assertion Failed"-error.
The expression is: _CrtIsValidHeapPointer( pUserData )
My very simple code is:
int main( int argc, char* argv[] )
{
sf::IpAddress ip("192.168.1.1");
std::cout << ip.ToString();
return 0;
}
Do I use this function in a wrong way or is it maybe a bug in SFML 2.0?
Thanks for your help,
Fred