diff options
Diffstat (limited to 'common/engine.cpp')
-rw-r--r-- | common/engine.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/common/engine.cpp b/common/engine.cpp index f507629771..14ee604e91 100644 --- a/common/engine.cpp +++ b/common/engine.cpp @@ -84,9 +84,11 @@ Engine *Engine::createFromDetector(GameDetector *detector, OSystem *syst) if (detector->_gameId >= GID_SIMON_FIRST && detector->_gameId <= GID_SIMON_LAST) { // Simon the Sorcerer engine = Engine_SIMON_create(detector, syst); - } else { + } else if (detector->_gameId >= GID_SCUMM_FIRST && detector->_gameId <= GID_SCUMM_LAST) { // Some kind of Scumm game engine = Engine_SCUMM_create(detector, syst); + } else { + // Unknown game } return engine; |