Remove our GLU dependency. Fix static zlib

This commit is contained in:
Ryan Houdek
2013-12-23 16:01:34 -07:00
parent 86b3719d14
commit a87e0e7489
3 changed files with 18 additions and 20 deletions

View File

@ -69,7 +69,7 @@ bool SaveTexture(const std::string filename, u32 textarget, u32 tex, int virtual
const GLenum err = GL_REPORT_ERROR();
if (GL_NO_ERROR != err)
{
PanicAlert("Can't save texture, GL Error: %s", gluErrorString(err));
PanicAlert("Can't save texture, GL Error: %d", err);
delete[] data;
return false;
}