I have another problem
Cant get SocketTCP::Connect to work under VisualStudio2008.
After linking program startsup and when he call Connect function i have something like that:
http://zapodaj.net/0f0481fada1e.png.htmlContinue button sems to be endless loop.
Heres my code (VS Win32 Console App project):
#include "stdafx.h"
#include <SFML/Network.hpp>
int _tmain(int argc, _TCHAR* argv[])
{
sf::SocketTCP Client;
if (Client.Connect(4567, "192.168.0.2") != sf::Socket::Done)
{
// Error...
}
return 0;
}
SFML 1.6 for VisualStudio2008 (static)