aboutsummaryrefslogtreecommitdiff
path: root/engines/voyeur/files.h
diff options
context:
space:
mode:
authorPaul Gilbert2013-06-17 22:41:58 -0400
committerPaul Gilbert2013-06-17 22:41:58 -0400
commitef902493c4ba9f63a184ba25dbd8f608deabfcd5 (patch)
tree5ee0ab88e4c7ca69ef3d3b5015e6559dd3b25663 /engines/voyeur/files.h
parent90d916d26ab39a80ad211811e9cd0a32d12dbaac (diff)
downloadscummvm-rg350-ef902493c4ba9f63a184ba25dbd8f608deabfcd5.tar.gz
scummvm-rg350-ef902493c4ba9f63a184ba25dbd8f608deabfcd5.tar.bz2
scummvm-rg350-ef902493c4ba9f63a184ba25dbd8f608deabfcd5.zip
VOYEUR: Some cleanup and enum-ifying graphic drawing code
Diffstat (limited to 'engines/voyeur/files.h')
-rw-r--r--engines/voyeur/files.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/voyeur/files.h b/engines/voyeur/files.h
index 4d8b86f9a6..77b53ccdef 100644
--- a/engines/voyeur/files.h
+++ b/engines/voyeur/files.h
@@ -201,6 +201,12 @@ public:
byte *fload(const Common::String &filename, int *size = NULL);
};
+enum DisplayFlag { DISPFLAG_1 = 1, DISPFLAG_2 = 2, DISPFLAG_4 = 4, DISPFLAG_8 = 8,
+ DISPFLAG_10 = 0x10, DISPFLAG_20 = 0x20, DISPFLAG_40 = 0x40, DISPFLAG_80 = 0x80,
+ DISPFLAG_100 = 0x100, DISPFLAG_200 = 0x200, DISPFLAG_400 = 0x400,
+ DISPFLAG_800 = 0x800, DISPFLAG_1000 = 0x1000, DISPFLAG_2000 = 0x2000,
+ DISPFLAG_4000 = 0x4000, DISPFLAG_VIEWPORT = 0x8000 };
+
class DisplayResource {
public:
uint16 _flags;