diff options
Diffstat (limited to 'engines/hugo/detection.cpp')
-rw-r--r-- | engines/hugo/detection.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/engines/hugo/detection.cpp b/engines/hugo/detection.cpp index 0064a39434..a4bc5a4c1c 100644 --- a/engines/hugo/detection.cpp +++ b/engines/hugo/detection.cpp @@ -41,8 +41,8 @@ uint32 HugoEngine::getFeatures() const { static const PlainGameDescriptor hugoGames[] = { // Games {"hugo1", "Hugo 1: Hugo's House of Horrors"}, - {"hugo2", "Hugo 2: Hugo's Mystery Adventure"}, - {"hugo3", "Hugo 3: Hugo's Amazon Adventure"}, + {"hugo2", "Hugo 2: Whodunit?"}, + {"hugo3", "Hugo 3: Jungle of Doom"}, {0, 0} }; @@ -194,8 +194,7 @@ void HugoEngine::initGame(const HugoGameDescription *gd) { _packedFl = (getFeatures() & GF_PACKED); _gameVariant = _gameType - 1 + ((_platform == Common::kPlatformWindows) ? 0 : 3); - // Generate filenames - _initFilename = _targetName + "-00.SAV"; + // Generate filename _saveFilename = _targetName + "-%d.SAV"; } |