From b16967fecea8d7df19cdfa05f511e98c2b53f1d1 Mon Sep 17 00:00:00 2001 From: md5 Date: Sat, 5 Mar 2011 18:40:31 +0200 Subject: SCI: Cleared up the different view types and ordered them by color count --- engines/sci/graphics/helpers.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'engines/sci/graphics') 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 -- cgit v1.2.3