aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb/gfx.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/hdb/gfx.h')
-rw-r--r--engines/hdb/gfx.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/hdb/gfx.h b/engines/hdb/gfx.h
index ce6ceb6502..73fb92a8ae 100644
--- a/engines/hdb/gfx.h
+++ b/engines/hdb/gfx.h
@@ -60,6 +60,7 @@ struct TileLookup {
struct GfxCache {
char name[32];
+ bool status; // false = tileGfx, true = picGfx
union {
Tile *tileGfx;
Picture *picGfx;
@@ -67,7 +68,7 @@ struct GfxCache {
uint32 size;
int16 loaded;
- GfxCache() : tileGfx(NULL), size(0), loaded(0) { name[0] = 0; }
+ GfxCache() : status(false), tileGfx(NULL), size(0), loaded(0) { name[0] = 0; }
};
struct FontInfo {