diff options
Diffstat (limited to 'engines/avalanche/graph.cpp')
-rw-r--r-- | engines/avalanche/graph.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/avalanche/graph.cpp b/engines/avalanche/graph.cpp index 9b5662e6be..17462da874 100644 --- a/engines/avalanche/graph.cpp +++ b/engines/avalanche/graph.cpp @@ -82,6 +82,10 @@ void Graph::drawLine(int x0, int y0, int x1, int y1, uint32 color) { _surface.drawLine(x0, y0, x1, y1, color); } +void Graph::drawSprite(const SpriteInfo &sprite) { + warning("STUB: Graph::drawSprite()"); +} + Graphics::Surface *Graph::readImage(const byte *source) { Graphics::Surface *picture = new Graphics::Surface; |