diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-10-18 20:40:27 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-10-19 15:12:21 +0300 |
commit | b9b33ea97c22015e8bb8059467364110e68b613e (patch) | |
tree | 54aeca9cd8a08197d311fd22d5c5babe14ed71ac /src/render/safeopenglgraphics.h | |
parent | 2341600ccac044cbb6cd1671bc1b9391cb91ed7d (diff) | |
download | plus-b9b33ea97c22015e8bb8059467364110e68b613e.tar.gz plus-b9b33ea97c22015e8bb8059467364110e68b613e.tar.bz2 plus-b9b33ea97c22015e8bb8059467364110e68b613e.tar.xz plus-b9b33ea97c22015e8bb8059467364110e68b613e.zip |
fix const in declaration in safeopenglgraphics.
Diffstat (limited to 'src/render/safeopenglgraphics.h')
-rw-r--r-- | src/render/safeopenglgraphics.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/render/safeopenglgraphics.h b/src/render/safeopenglgraphics.h index 93f67d75e..666bc574a 100644 --- a/src/render/safeopenglgraphics.h +++ b/src/render/safeopenglgraphics.h @@ -167,7 +167,7 @@ class SafeOpenGLGraphics final : public Graphics void setTexturingAndBlending(const bool enable); private: - void inline setColorAlpha(float alpha); + void inline setColorAlpha(const float alpha); void inline restoreColor(); |