I initially thought this was a issue with networking..
int main()
{
sf::Int8 i = 1;
std::cout << i;
std::cin.get();
}
This piece of code prints a smiley face to the console screen, not 1
windows 8.1 visual studio 2013
So cast to int or short or something, obviously: ;)
int main()
{
sf::Int8 i = 1;
std::cout << static_cast<int>(i);
}