diff options
Diffstat (limited to 'src/render/sdlgraphics.cpp')
-rw-r--r-- | src/render/sdlgraphics.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/render/sdlgraphics.cpp b/src/render/sdlgraphics.cpp index b3d962d9f..52439f1c3 100644 --- a/src/render/sdlgraphics.cpp +++ b/src/render/sdlgraphics.cpp @@ -501,7 +501,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(); @@ -521,7 +522,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; |