aboutsummaryrefslogtreecommitdiff
path: root/engines/avalanche/graph.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/avalanche/graph.h')
-rw-r--r--engines/avalanche/graph.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/engines/avalanche/graph.h b/engines/avalanche/graph.h
index 220f87f1f6..beaa796915 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 = 350;
+ static const int16 _screenHeight = 200;
@@ -52,7 +52,9 @@ public:
void setPixel(byte *pixel, byte color);
- void drawToScreen();
+ void drawBar(int16 x1, int16 y1, int16 x2, int16 y2, int16 color);
+
+ void refreshScreen();
private:
AvalancheEngine *_vm;