aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2006-01-22 13:32:39 +0000
committerTravis Howell2006-01-22 13:32:39 +0000
commitee6840a4847203c398520e235932d15e4c320226 (patch)
tree0a6f47bd2c0953ad541d05a4278be693b5498a86
parente14b7fe8ac25ab743f1db0d2cb47362f089b528a (diff)
downloadscummvm-rg350-ee6840a4847203c398520e235932d15e4c320226.tar.gz
scummvm-rg350-ee6840a4847203c398520e235932d15e4c320226.tar.bz2
scummvm-rg350-ee6840a4847203c398520e235932d15e4c320226.zip
Used by PC version of FT demo too.
svn-id: r20136
-rw-r--r--scumm/scumm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp
index 6e061acc85..910df20dc1 100644
--- a/scumm/scumm.cpp
+++ b/scumm/scumm.cpp
@@ -2871,7 +2871,7 @@ static bool generateDetectName(const ScummGameSettings *g, int method, char *det
strcpy(detectName, "000.LFL");
break;
case 2:
- if (g->version < 4 || g->version > 6)
+ if (g->version < 4 || g->version > 7)
return false;
strcpy(detectName, g->gameid);
strcat(detectName, ".000");