summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-06-30 02:06:26 +0300
committerAndrei Karas <akaras@inbox.ru>2012-06-30 02:06:26 +0300
commit49ef874d739f7d9da226424935f65da2a342c6bb (patch)
tree2ebe05c18c84c7de859a2f96bdf140909da4c698
parent7e3170fa2b3f602428404e2f82fdb8c6640ea787 (diff)
downloadmv-49ef874d739f7d9da226424935f65da2a342c6bb.tar.gz
mv-49ef874d739f7d9da226424935f65da2a342c6bb.tar.bz2
mv-49ef874d739f7d9da226424935f65da2a342c6bb.tar.xz
mv-49ef874d739f7d9da226424935f65da2a342c6bb.zip
Fix compilation error with disabled OpenGL debuging.
-rw-r--r--src/openglgraphics.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openglgraphics.cpp b/src/openglgraphics.cpp
index 80a28dcd2..08a88f4f6 100644
--- a/src/openglgraphics.cpp
+++ b/src/openglgraphics.cpp
@@ -1409,7 +1409,7 @@ void OpenGLGraphics::debugBindTexture(const Image *image)
}
}
#else
-void OpenGLGraphics::debugBindTexture(Image *image A_UNUSED)
+void OpenGLGraphics::debugBindTexture(const Image *image A_UNUSED)
{
}
#endif