From 246d010895f2147a7d84637fcb06710099e43021 Mon Sep 17 00:00:00 2001 From: "auria.mg" Date: Sun, 7 Jan 2018 18:31:37 -0500 Subject: [PATCH] Fix compilation --- src/graphics/stk_text_billboard.hpp | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/graphics/stk_text_billboard.hpp b/src/graphics/stk_text_billboard.hpp index 373293685..8a1063050 100644 --- a/src/graphics/stk_text_billboard.hpp +++ b/src/graphics/stk_text_billboard.hpp @@ -34,6 +34,14 @@ using namespace scene; class STKTextBillboard : public ISceneNode, public NoCopy, FontWithFace::FontCharCollector { +public: + struct GLTB + { + core::vector3df m_position; + video::SColor m_color; + short m_uv[2]; + }; + private: struct STKTextBillboardChar { @@ -55,13 +63,6 @@ private: } }; - struct GLTB - { - core::vector3df m_position; - video::SColor m_color; - short m_uv[2]; - }; - SP::SPInstancedData m_instanced_data; GLuint m_instanced_array = 0;