diff --git a/src/resource_manager.cpp b/src/resource_manager.cpp index 10600d9..9eef57d 100644 --- a/src/resource_manager.cpp +++ b/src/resource_manager.cpp @@ -32,6 +32,7 @@ void ResourceManager::preload() { std::string name = it->path().filename().string(); auto texture = std::unique_ptr(new sf::Texture); + texture->setSmooth(true); std::cout << "Chargement de la texture " << name << "... "; if (!texture->loadFromFile(full_path)) {