diff options
Diffstat (limited to 'engines/hdb/draw-manager.h')
-rw-r--r-- | engines/hdb/draw-manager.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/hdb/draw-manager.h b/engines/hdb/draw-manager.h index 2789fbb099..f6909918ed 100644 --- a/engines/hdb/draw-manager.h +++ b/engines/hdb/draw-manager.h @@ -102,13 +102,14 @@ public: Graphics::Surface load(Common::SeekableReadStream *stream); void draw(int x, int y); + void drawMasked(int x, int y); private: uint _width, _height; char _name[64]; - Graphics::ManagedSurface _surface; + Graphics::Surface _surface; }; @@ -125,7 +126,7 @@ public: private: char _name[64]; - Graphics::ManagedSurface _surface; + Graphics::Surface _surface; }; } // End of Namespace HDB |