diff options
Diffstat (limited to 'src/render/sdl2graphics.cpp')
-rw-r--r-- | src/render/sdl2graphics.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/render/sdl2graphics.cpp b/src/render/sdl2graphics.cpp index 7169ee9eb..979de3c31 100644 --- a/src/render/sdl2graphics.cpp +++ b/src/render/sdl2graphics.cpp @@ -385,7 +385,8 @@ void SDLGraphics::calcTileCollection(ImageCollection *const vertCol, } } -void SDLGraphics::drawTile(const ImageCollection *const vertCol) +void SDLGraphics::drawTileCollection(const ImageCollection + *const vertCol) { const ImageVertexesVector &draws = vertCol->draws; const ImageCollectionCIter it_end = draws.end(); @@ -405,7 +406,7 @@ void SDLGraphics::drawTile(const ImageCollection *const vertCol) } } -void SDLGraphics::drawTile(const ImageVertexes *const vert) +void SDLGraphics::drawTileVertexes(const ImageVertexes *const vert) { // vert and img must be != 0 const Image *const img = vert->image; |