SFML community forums
Help => Graphics => Topic started by: Debonair on July 17, 2015, 05:51:05 pm
-
window.setIcon(image.GetWidth(), image.GetHeight(), image.GetPixelsPtr());
Tried using this, but it's telling me the methods aren't within Image as members. Is this an outdated way of doing it, or am I doing it wrong? Using SFML 2.2.
-
Why don't you look at the documentation? The method naming scheme has changed since SFML 1.6.
-
According to that, it should be something like this:
window.setIcon(image.getSize().x, image.getSize().y, image.getPixelsPtr());
Compiled fine, but the icon didn't change. Problems with the image format maybe? Using a 128x128 .ico.
-
Well look at the console output and/or the documentation. The *.ico format is not supported.
-
.png it is then. Case solved I guess. Thanks.