diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-06-30 02:06:26 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-06-30 02:06:26 +0300 |
commit | 49ef874d739f7d9da226424935f65da2a342c6bb (patch) | |
tree | 2ebe05c18c84c7de859a2f96bdf140909da4c698 /src | |
parent | 7e3170fa2b3f602428404e2f82fdb8c6640ea787 (diff) | |
download | plus-49ef874d739f7d9da226424935f65da2a342c6bb.tar.gz plus-49ef874d739f7d9da226424935f65da2a342c6bb.tar.bz2 plus-49ef874d739f7d9da226424935f65da2a342c6bb.tar.xz plus-49ef874d739f7d9da226424935f65da2a342c6bb.zip |
Fix compilation error with disabled OpenGL debuging.
Diffstat (limited to 'src')
-rw-r--r-- | src/openglgraphics.cpp | 2 |
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 |