From 72f65b3946278661db95fc02511444ff1658a3bf Mon Sep 17 00:00:00 2001 From: md5 Date: Sun, 27 Feb 2011 16:48:53 +0200 Subject: SCI: Renamed SCI_VERSION_1_EGA to SCI_VERSION_1_EGA_ONLY This renaming allows us to better distinguish that this version is for games that only had an EGA version, and avoid confusion with newer SCI1 game releases with EGA graphics (e.g. KQ5 EGA). The only game with this SCI version is QFG2, a SCI1 EGA game with a parser. Also, added some games for each SCI version. --- engines/sci/engine/static_selectors.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/sci/engine/static_selectors.cpp') diff --git a/engines/sci/engine/static_selectors.cpp b/engines/sci/engine/static_selectors.cpp index 4bb61a0658..96507e3e1b 100644 --- a/engines/sci/engine/static_selectors.cpp +++ b/engines/sci/engine/static_selectors.cpp @@ -185,7 +185,7 @@ Common::StringArray Kernel::checkStaticSelectorNames() { // dispose comes right after init names[initSelectorPos + 1] = "dispose"; - if ((getSciVersion() >= SCI_VERSION_1_EGA)) { + if ((getSciVersion() >= SCI_VERSION_1_EGA_ONLY)) { // Find the xLast and yLast selectors, used in kDoBresen // xLast and yLast always come between illegalBits and xStep @@ -205,7 +205,7 @@ Common::StringArray Kernel::checkStaticSelectorNames() { names[xLastSelectorPos] = "xLast"; names[yLastSelectorPos] = "yLast"; - } // if ((getSciVersion() >= SCI_VERSION_1_EGA)) + } // if ((getSciVersion() >= SCI_VERSION_1_EGA_ONLY)) } // if (actorClass) _segMan->uninstantiateScript(998); -- cgit v1.2.3