diff options
| -rw-r--r-- | engines/scumm/plugin.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/scumm/plugin.cpp b/engines/scumm/plugin.cpp index f2255db8f5..455fec01e3 100644 --- a/engines/scumm/plugin.cpp +++ b/engines/scumm/plugin.cpp @@ -1186,6 +1186,10 @@ void detectGames(const FSList &fslist, Common::List<DetectorResult> &results, co } else continue; } else { + // Must be a V5+ game + if (g->version < 5) + continue; + // So at this point the gameid is determined, but not necessarily // the variant! |
