diff options
Diffstat (limited to 'engines/avalanche/graph.h')
-rw-r--r-- | engines/avalanche/graph.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/avalanche/graph.h b/engines/avalanche/graph.h index 559e78cb6f..3d819d1d3a 100644 --- a/engines/avalanche/graph.h +++ b/engines/avalanche/graph.h @@ -38,7 +38,7 @@ class AvalancheEngine; class Graph { public: static const int16 _screenWidth = 640; - static const int16 _screenHeight = 400; + static const int16 _screenHeight = 200; @@ -50,11 +50,11 @@ public: byte *getPixel(int16 x, int16 y); - void setPixel(byte *pixel, byte color); + void setPixel(int16 x, int16 y, byte color); void drawBar(int16 x1, int16 y1, int16 x2, int16 y2, int16 color); - void copySurface(Graphics::Surface source); + void copySurface(Graphics::Surface source, uint16 destX, uint16 destY); void refreshScreen(); |