diff options
Diffstat (limited to 'engines/toltecs/detection.cpp')
-rw-r--r-- | engines/toltecs/detection.cpp | 35 |
1 files changed, 31 insertions, 4 deletions
diff --git a/engines/toltecs/detection.cpp b/engines/toltecs/detection.cpp index c5652f0c8d..e8f08bcc61 100644 --- a/engines/toltecs/detection.cpp +++ b/engines/toltecs/detection.cpp @@ -8,17 +8,16 @@ * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. - + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - + * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - * */ #include "base/plugins.h" @@ -73,6 +72,34 @@ static const ToltecsGameDescription gameDescriptions[] = { }, { + // 3 Skulls of the Toltecs English version (alternate) + // From bug #3614933 + { + "toltecs", + 0, + AD_ENTRY1s("WESTERN", "a9c9cfef9d05b8f7a5573b626fa4ea87", 337643527), + Common::EN_ANY, + Common::kPlatformDOS, + ADGF_NO_FLAGS, + GUIO1(GUIO_NONE) + }, + }, + + { + // 3 Skulls of the Toltecs PIRATE CD-RIP version (no audio) + // == DO NOT RE-ADD == + { + "toltecs", + 0, + AD_ENTRY1s("WESTERN", "56d0da91ec3db8ac869594357584e851", 104804435), + Common::EN_ANY, + Common::kPlatformDOS, + ADGF_PIRATED, + GUIO1(GUIO_NONE) + }, + }, + + { // 3 Skulls of the Toltecs Russian version { "toltecs", @@ -242,7 +269,7 @@ SaveStateList ToltecsMetaEngine::listSaves(const char *target) const { Common::sort(filenames.begin(), filenames.end()); // Sort (hopefully ensuring we are sorted numerically..) SaveStateList saveList; - for (Common::StringArray::const_iterator file = filenames.begin(); file != filenames.end(); file++) { + for (Common::StringArray::const_iterator file = filenames.begin(); file != filenames.end(); ++file) { // Obtain the last 3 digits of the filename, since they correspond to the save slot int slotNum = atoi(file->c_str() + file->size() - 3); |