diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-05-01 15:14:16 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-05-01 23:42:37 +0300 |
commit | f9030497b6196ce2fadb6b6ada5d784be227d9a6 (patch) | |
tree | d11408b35d0860709d31e6520578cdd28391f151 /src/render/graphics.cpp | |
parent | f52ca7838789a6910840597a929ecf6e0be9e1de (diff) | |
download | plus-f9030497b6196ce2fadb6b6ada5d784be227d9a6.tar.gz plus-f9030497b6196ce2fadb6b6ada5d784be227d9a6.tar.bz2 plus-f9030497b6196ce2fadb6b6ada5d784be227d9a6.tar.xz plus-f9030497b6196ce2fadb6b6ada5d784be227d9a6.zip |
Add missing const.
Diffstat (limited to 'src/render/graphics.cpp')
-rw-r--r-- | src/render/graphics.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/render/graphics.cpp b/src/render/graphics.cpp index 5437e6737..24c3ab69e 100644 --- a/src/render/graphics.cpp +++ b/src/render/graphics.cpp @@ -547,7 +547,7 @@ void Graphics::setWindowSize(const int width A_UNUSED, #endif } -bool Graphics::pushClipArea(Rect area) +bool Graphics::pushClipArea(const Rect &area) { // Ignore area with a negate width or height // by simple pushing an empty clip area |