summaryrefslogtreecommitdiffhomepage
path: root/src/tile-atlas.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tile-atlas.hpp')
-rw-r--r--src/tile-atlas.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tile-atlas.hpp b/src/tile-atlas.hpp
index 026d2073..5856f3bb 100644
--- a/src/tile-atlas.hpp
+++ b/src/tile-atlas.hpp
@@ -3,6 +3,7 @@
#include <Magnum/Magnum.h>
#include <Magnum/GL/Texture.h>
#include <array>
+#include <string>
#include <memory>
namespace floormat {
@@ -31,7 +32,7 @@ private:
std::unique_ptr<const texcoords[]> texcoords_;
GL::Texture2D tex_;
- String name_;
+ std::string name_;
Vector2ui size_;
Vector2ub dims_;
};