diff options
author | Travis Howell | 2006-01-22 13:32:39 +0000 |
---|---|---|
committer | Travis Howell | 2006-01-22 13:32:39 +0000 |
commit | ee6840a4847203c398520e235932d15e4c320226 (patch) | |
tree | 0a6f47bd2c0953ad541d05a4278be693b5498a86 /scumm | |
parent | e14b7fe8ac25ab743f1db0d2cb47362f089b528a (diff) | |
download | scummvm-rg350-ee6840a4847203c398520e235932d15e4c320226.tar.gz scummvm-rg350-ee6840a4847203c398520e235932d15e4c320226.tar.bz2 scummvm-rg350-ee6840a4847203c398520e235932d15e4c320226.zip |
Used by PC version of FT demo too.
svn-id: r20136
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/scumm.cpp | 2 |
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"); |