diff options
author | md5 | 2011-03-05 18:40:31 +0200 |
---|---|---|
committer | md5 | 2011-03-05 18:47:14 +0200 |
commit | b16967fecea8d7df19cdfa05f511e98c2b53f1d1 (patch) | |
tree | 9efaff2b9d65a1c895ccca45dbf737adab84c2a0 /engines | |
parent | dbd3f440d2edb976bd304320daa8d150385261af (diff) | |
download | scummvm-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')
-rw-r--r-- | engines/sci/graphics/helpers.h | 11 |
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 |