aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/hdb/draw-manager.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/engines/hdb/draw-manager.h b/engines/hdb/draw-manager.h
index 064cfe923b..9e5125eedd 100644
--- a/engines/hdb/draw-manager.h
+++ b/engines/hdb/draw-manager.h
@@ -23,7 +23,7 @@
#ifndef HDB_DRAW_MANAGER_H
#define HDB_DRAW_MANAGER_H
-#include "graphics/surface.h"
+#include "graphics/managed_surface.h"
#include "hdb/hdb.h"
@@ -101,7 +101,7 @@ private:
uint _width, _height;
char _name[64];
- Graphics::Surface _surface;
+ Graphics::ManagedSurface _surface;
};
@@ -113,11 +113,12 @@ public:
Graphics::Surface load(Common::SeekableReadStream *stream);
void draw(int x, int y);
-private:
uint32 _flags;
+
+private:
char _name[64];
- Graphics::Surface _surface;
+ Graphics::ManagedSurface _surface;
};
} // End of Namespace HDB