aboutsummaryrefslogtreecommitdiff
path: root/engines/prince/graphics.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/prince/graphics.h')
-rw-r--r--engines/prince/graphics.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/engines/prince/graphics.h b/engines/prince/graphics.h
index 0e29c5c97a..3ef768a073 100644
--- a/engines/prince/graphics.h
+++ b/engines/prince/graphics.h
@@ -33,26 +33,26 @@ class PrinceEngine;
class GraphicsMan
{
public:
- GraphicsMan(PrinceEngine *vm);
+ GraphicsMan(PrinceEngine *vm);
- void update();
+ void update();
- void change();
+ void change();
- void setPalette(const byte *palette);
+ void setPalette(const byte *palette);
- void draw(const Graphics::Surface *s);
- void drawTransparent(const Graphics::Surface *s);
+ void draw(uint16 x, uint16 y, const Graphics::Surface *s);
+ void drawTransparent(const Graphics::Surface *s);
- Graphics::Surface *_frontScreen;
- Graphics::Surface *_backScreen;
- const Graphics::Surface *_roomBackground;
+ Graphics::Surface *_frontScreen;
+ Graphics::Surface *_backScreen;
+ const Graphics::Surface *_roomBackground;
private:
- PrinceEngine *_vm;
+ PrinceEngine *_vm;
- bool _changed;
+ bool _changed;
};
}