diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-06-27 21:06:31 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-06-27 21:06:31 -0400 |
commit | 00f633afb62ed6914205639b44dcdaf839a2c2f7 (patch) | |
tree | 5ec98271bb09cd8f1c77c40a8699e0deaadeb942 /include/texture.hpp | |
parent | b202b0d3952e546aaa6d64d42886d9c926f6bd76 (diff) |
redid trees, fixed indoors?
Diffstat (limited to 'include/texture.hpp')
-rw-r--r-- | include/texture.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/texture.hpp b/include/texture.hpp index 0ee3e2c..c301af1 100644 --- a/include/texture.hpp +++ b/include/texture.hpp @@ -47,9 +47,9 @@ public: position = std::begin(textures); } TextureIterator(const std::vector<std::string> &l) { - for (const auto &s : l) { + for (const auto &s : l) textures.emplace_back(Texture::loadTexture(s), s); - } + position = std::begin(textures); } void operator++(int) noexcept { |