mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-21 04:59:11 +00:00
Icon deallocation fix
This commit is contained in:
@@ -50,7 +50,13 @@ public:
|
||||
for (int r=0 ; r<ROWS ; ++r)
|
||||
m_icons[c][r] = MakeIcon(c, r);
|
||||
}
|
||||
void destroyAtlas() { m_tex.reset(); }
|
||||
void destroyAtlas()
|
||||
{
|
||||
for (int c=0 ; c<COLS ; ++c)
|
||||
for (int r=0 ; r<ROWS ; ++r)
|
||||
m_icons[c][r].m_tex.reset();
|
||||
m_tex.reset();
|
||||
}
|
||||
Icon& getIcon(size_t c, size_t r) {return m_icons[c][r];}
|
||||
};
|
||||
|
||||
|
||||
Submodule specter/zeus updated: f0df551237...0b8af4b75d
Reference in New Issue
Block a user