diff options
Diffstat (limited to 'include/texture.hpp')
-rw-r--r-- | include/texture.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/texture.hpp b/include/texture.hpp index c301af1..7f22a79 100644 --- a/include/texture.hpp +++ b/include/texture.hpp @@ -46,6 +46,9 @@ public: TextureIterator(void) { position = std::begin(textures); } + ~TextureIterator(void) { + textures.clear(); + } TextureIterator(const std::vector<std::string> &l) { for (const auto &s : l) textures.emplace_back(Texture::loadTexture(s), s); |