diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-12-12 22:49:07 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-12-12 22:49:07 +0300 |
commit | ff3c80151bd6ddbf0b963dd28c25dc1c47fd4347 (patch) | |
tree | a8cd241884aee1410aa20ab6fc65fc0f53bbdc3b | |
parent | a7c79fc47a8d8387cfe9c59c4e45725c0c0ecef1 (diff) | |
download | plus-ff3c80151bd6ddbf0b963dd28c25dc1c47fd4347.tar.gz plus-ff3c80151bd6ddbf0b963dd28c25dc1c47fd4347.tar.bz2 plus-ff3c80151bd6ddbf0b963dd28c25dc1c47fd4347.tar.xz plus-ff3c80151bd6ddbf0b963dd28c25dc1c47fd4347.zip |
Fix compilation warning.
-rw-r--r-- | src/render/mobileopengl2graphics.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/render/mobileopengl2graphics.cpp b/src/render/mobileopengl2graphics.cpp index f165ec11a..533945fa1 100644 --- a/src/render/mobileopengl2graphics.cpp +++ b/src/render/mobileopengl2graphics.cpp @@ -1149,8 +1149,8 @@ void MobileOpenGL2Graphics::bindTexture2(const GLenum target, } } -void MobileOpenGL2Graphics::bindTexture(const GLenum target A_UNUSED, - const GLuint texture A_UNUSED) +void MobileOpenGL2Graphics::bindTexture(const GLenum target, + const GLuint texture) { if (mTextureBinded != texture) { |