diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-10-18 13:08:53 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-10-19 15:12:20 +0300 |
commit | ec339ab81152e5d0bf3c4d19b7f2ed726d55bdc0 (patch) | |
tree | 41c30471a3d7f1f30dbce61ff614176c05815da6 /src | |
parent | 77f9d35e736eb7f0f6491b3c6cbe415a8e9ad3cf (diff) | |
download | plus-ec339ab81152e5d0bf3c4d19b7f2ed726d55bdc0.tar.gz plus-ec339ab81152e5d0bf3c4d19b7f2ed726d55bdc0.tar.bz2 plus-ec339ab81152e5d0bf3c4d19b7f2ed726d55bdc0.tar.xz plus-ec339ab81152e5d0bf3c4d19b7f2ed726d55bdc0.zip |
fix const in definition in graphics.h
Diffstat (limited to 'src')
-rw-r--r-- | src/render/graphics.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/render/graphics.h b/src/render/graphics.h index fd87e6733..78e348be6 100644 --- a/src/render/graphics.h +++ b/src/render/graphics.h @@ -392,8 +392,9 @@ class Graphics : public gcn::Graphics const bool useColor) = 0; - void setMainFlags(int w, int h, int bpp, bool fs, - bool hwaccel, bool resize, bool noFrame); + void setMainFlags(const int w, const int h, const int bpp, + const bool fs, const bool hwaccel, + const bool resize, const bool noFrame); int getOpenGLFlags() const A_WARN_UNUSED; |