aboutsummaryrefslogtreecommitdiffstats
path: root/include/texture.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-06-26 11:50:15 -0400
committerClyne Sullivan <tullivan99@gmail.com>2016-06-26 11:50:15 -0400
commitb61e4e5b140278705c79674c02de6886b2189f71 (patch)
tree2e77fa22db804334efd5a3b8dacf8d8167a387bd /include/texture.hpp
parentf4177a77ceff0e1cffb7e968f3d48497fcd2d45c (diff)
fixing everything that's apparently broken...
Diffstat (limited to 'include/texture.hpp')
-rw-r--r--include/texture.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/texture.hpp b/include/texture.hpp
index 95bd73b..0ee3e2c 100644
--- a/include/texture.hpp
+++ b/include/texture.hpp
@@ -47,8 +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 {