diff options
author | Willem Jan Palenstijn | 2013-04-18 23:35:23 +0200 |
---|---|---|
committer | Willem Jan Palenstijn | 2013-05-08 20:40:58 +0200 |
commit | 9c2341678ef4984bf92b3878295250faf980b066 (patch) | |
tree | 2fb4805e05e16b9924e80c9947e6bad723b28c4b /engines/cine/detection.cpp | |
parent | 8172d679df5148a4a32f46074b20cb6caf91844f (diff) | |
parent | a5f4ff36ffc386d48f2da49387a9655ce9295a4d (diff) | |
download | scummvm-rg350-9c2341678ef4984bf92b3878295250faf980b066.tar.gz scummvm-rg350-9c2341678ef4984bf92b3878295250faf980b066.tar.bz2 scummvm-rg350-9c2341678ef4984bf92b3878295250faf980b066.zip |
Merge branch 'master'
Diffstat (limited to 'engines/cine/detection.cpp')
-rw-r--r-- | engines/cine/detection.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/cine/detection.cpp b/engines/cine/detection.cpp index a64272d967..823b8e38b5 100644 --- a/engines/cine/detection.cpp +++ b/engines/cine/detection.cpp @@ -65,7 +65,7 @@ class CineMetaEngine : public AdvancedMetaEngine { public: CineMetaEngine() : AdvancedMetaEngine(Cine::gameDescriptions, sizeof(Cine::CINEGameDescription), cineGames) { _singleid = "cine"; - _guioptions = GUIO2(GUIO_NOSPEECH, GUIO_NOMIDI); + _guioptions = GUIO1(GUIO_NOSPEECH); } virtual GameDescriptor findGame(const char *gameid) const { @@ -141,7 +141,7 @@ SaveStateList CineMetaEngine::listSaves(const char *target) const { for (file = filenames.begin(); file != filenames.end(); ++file) { // Jump over savegame files that don't end with a digit (e.g. "fw.3" is ok, "fw.a" is not). - if (!isdigit(static_cast<unsigned char>(file->lastChar()))) + if (!Common::isDigit(file->lastChar())) continue; // Obtain the last digit of the filename, since they correspond to the save slot |