diff options
Diffstat (limited to 'src/menu')
-rw-r--r-- | src/menu/texture.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/menu/texture.hpp b/src/menu/texture.hpp index 6e1ea640..19197b0a 100644 --- a/src/menu/texture.hpp +++ b/src/menu/texture.hpp @@ -49,10 +49,10 @@ namespace usdx class TextureSizeException : public TextureLoadException { private: - Dimension size; + Dimension<int> size; public: - TextureSizeException(Dimension size) : size(size) { }; + TextureSizeException(Dimension<int> size) : size(size) { }; virtual ~TextureSizeException() { }; }; @@ -76,7 +76,7 @@ namespace usdx GLuint texture; GLenum texture_format; - Dimension size; + Dimension<int> size; float rotation; ///< radiant (0 - 2*pi) |