Hey there,
When trying to load a font, compiler tells me:
error: passing 'const sf::Texture' as 'this' argument of 'bool sf::Texture::loadFromFile(const string&, const IntRect&)' discards qualifiers [-fpermissive]
Here's the offending code:
if(!this->Start_Button_Texture.loadFromFile("StartBTN200x100.png", sf::IntRect(0, 0, 200, 100))){
//Err
}
This is the first error the compiler spits out.
By the way, I'm compiling for Android armeabi (Target) on Windows 10 (Host).