dont use m_renderer if null

This commit is contained in:
Michael Tesch 2020-01-03 16:18:51 +01:00
parent 1579a1f1e1
commit 6f52e6e6c7

View File

@ -121,9 +121,11 @@ TBBitmapGL::TBBitmapGL(TBRendererGL *renderer)
TBBitmapGL::~TBBitmapGL()
{
// Must flush and unbind before we delete the texture
if (m_renderer) m_renderer->FlushBitmap(this);
if (m_texture == m_renderer->m_current_texture)
m_renderer->BindBitmap(nullptr);
if (m_renderer) {
m_renderer->FlushBitmap(this);
if (m_texture == m_renderer->m_current_texture)
m_renderer->BindBitmap(nullptr);
}
GLCALL(glDeleteTextures(1, &m_texture));
}