diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-12-15 00:42:06 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-12-15 00:42:06 +0300 |
commit | 5546ac2f1a459b3fba47b42d546469cdae3c1c27 (patch) | |
tree | 311576ac10867d5c116c1e13bd542f05be3ebe64 /src/render/surfacegraphics.h | |
parent | 53d28e67f8b7966596818af7cbfd360df241b332 (diff) | |
download | plus-5546ac2f1a459b3fba47b42d546469cdae3c1c27.tar.gz plus-5546ac2f1a459b3fba47b42d546469cdae3c1c27.tar.bz2 plus-5546ac2f1a459b3fba47b42d546469cdae3c1c27.tar.xz plus-5546ac2f1a459b3fba47b42d546469cdae3c1c27.zip |
rename drawTile methods into separate names drawTileVertexes, drawTileCollection.
Diffstat (limited to 'src/render/surfacegraphics.h')
-rw-r--r-- | src/render/surfacegraphics.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/render/surfacegraphics.h b/src/render/surfacegraphics.h index 9af2efb76..7a130dd30 100644 --- a/src/render/surfacegraphics.h +++ b/src/render/surfacegraphics.h @@ -128,11 +128,12 @@ class SurfaceGraphics : public Graphics int x A_UNUSED, int y A_UNUSED) override final { } - void drawTile(const ImageVertexes *const vert A_UNUSED) override final + void drawTileVertexes(const ImageVertexes *const + vert A_UNUSED) override final { } - void drawTile(const ImageCollection *const vertCol A_UNUSED) - override final + void drawTileCollection(const ImageCollection *const vertCol A_UNUSED) + override final { } void updateScreen() |