2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-08 00:05:52 +00:00

fixed bool operator for IconAtlas

This commit is contained in:
cylgom 2017-11-08 07:10:17 +01:00
parent 5dbdd62cae
commit 37231d69b0

View File

@ -42,7 +42,7 @@ class IconAtlas
}
public:
IconAtlas() = default;
operator bool() const {return m_tex != nullptr;}
operator bool() const {return m_tex;}
void initializeAtlas(const boo::ObjToken<boo::ITextureS>& tex)
{
m_tex = tex;