diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-05-01 23:56:03 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-05-02 14:28:17 +0300 |
commit | 520a495c466793c29f3e721634dfe6cc616b8ede (patch) | |
tree | 749b67f5d4df83f6f4997dabeb66ec394eabccd7 /src/maplayer.cpp | |
parent | f9030497b6196ce2fadb6b6ada5d784be227d9a6 (diff) | |
download | plus-520a495c466793c29f3e721634dfe6cc616b8ede.tar.gz plus-520a495c466793c29f3e721634dfe6cc616b8ede.tar.bz2 plus-520a495c466793c29f3e721634dfe6cc616b8ede.tar.xz plus-520a495c466793c29f3e721634dfe6cc616b8ede.zip |
Add missing const.
Diffstat (limited to 'src/maplayer.cpp')
-rw-r--r-- | src/maplayer.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/maplayer.cpp b/src/maplayer.cpp index 7db90b956..bfecd90d8 100644 --- a/src/maplayer.cpp +++ b/src/maplayer.cpp @@ -178,7 +178,8 @@ void MapLayer::drawSDL(Graphics *const graphics) } #ifdef USE_OPENGL -void MapLayer::updateSDL(Graphics *const graphics, int startX, int startY, +void MapLayer::updateSDL(const Graphics *const graphics, + int startX, int startY, int endX, int endY, const int scrollX, const int scrollY, const int debugFlags) @@ -242,7 +243,8 @@ void MapLayer::updateSDL(Graphics *const graphics, int startX, int startY, BLOCK_END("MapLayer::updateSDL") } -void MapLayer::updateOGL(Graphics *const graphics, int startX, int startY, +void MapLayer::updateOGL(const Graphics *const graphics, + int startX, int startY, int endX, int endY, const int scrollX, const int scrollY, const int debugFlags) |