aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/helpers.h
diff options
context:
space:
mode:
authormd52011-03-05 18:40:31 +0200
committermd52011-03-05 18:47:14 +0200
commitb16967fecea8d7df19cdfa05f511e98c2b53f1d1 (patch)
tree9efaff2b9d65a1c895ccca45dbf737adab84c2a0 /engines/sci/graphics/helpers.h
parentdbd3f440d2edb976bd304320daa8d150385261af (diff)
downloadscummvm-rg350-b16967fecea8d7df19cdfa05f511e98c2b53f1d1.tar.gz
scummvm-rg350-b16967fecea8d7df19cdfa05f511e98c2b53f1d1.tar.bz2
scummvm-rg350-b16967fecea8d7df19cdfa05f511e98c2b53f1d1.zip
SCI: Cleared up the different view types and ordered them by color count
Diffstat (limited to 'engines/sci/graphics/helpers.h')
-rw-r--r--engines/sci/graphics/helpers.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/engines/sci/graphics/helpers.h b/engines/sci/graphics/helpers.h
index 3c6515ae73..1a87e566d5 100644
--- a/engines/sci/graphics/helpers.h
+++ b/engines/sci/graphics/helpers.h
@@ -138,12 +138,13 @@ struct PalSchedule {
uint32 schedule;
};
+// Game view types, sorted by the number of colors
enum ViewType {
- kViewUnknown,
- kViewEga,
- kViewVga,
- kViewVga11,
- kViewAmiga
+ kViewUnknown, // uninitialized, or non-SCI
+ kViewEga, // EGA SCI0/SCI1 and Amiga SCI0/SCI1 ECS 16 colors
+ kViewAmiga, // Amiga SCI1 ECS 32 colors
+ kViewVga, // VGA SCI1 256 colors or Amiga SCI1 AGA 64 colors (i.e. Longbow)
+ kViewVga11 // VGA SCI1.1 and newer 256 colors
};
} // End of namespace Sci