mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2025-02-16 17:35:39 +00:00
remove debug code
This commit is contained in:
parent
260daa1b91
commit
bb3c538808
|
@ -19,7 +19,6 @@ void Texture::DeleteTexture()
|
|||
{
|
||||
if (m_textureID) {
|
||||
glDeleteTextures(1, &m_textureID);
|
||||
printf("-----> deleting %i %i %i %i %i\n", m_format, m_x, m_y, m_width, m_height);
|
||||
Reset();
|
||||
}
|
||||
}
|
||||
|
@ -378,8 +377,6 @@ void Texture::CreateTextureObject(int format, bool mirrorU, bool mirrorV, int x,
|
|||
m_format = format;
|
||||
m_mirrorU = mirrorU;
|
||||
m_mirrorV = mirrorV;
|
||||
|
||||
printf("create format %i x: %i y: %i width: %i height: %i\n", format, x, y, width, height);
|
||||
}
|
||||
|
||||
} // New3D
|
||||
|
|
Loading…
Reference in a new issue