aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2006-01-24 23:14:52 +0000
committerTravis Howell2006-01-24 23:14:52 +0000
commita9e164e757fde583858f82abfdbdfe8ba729dac5 (patch)
treec40208553e5731f25776c8e4242ad63558482d0b
parenta031c852b9bc388fcfcfaeb90761351009c2d1a3 (diff)
downloadscummvm-rg350-a9e164e757fde583858f82abfdbdfe8ba729dac5.tar.gz
scummvm-rg350-a9e164e757fde583858f82abfdbdfe8ba729dac5.tar.bz2
scummvm-rg350-a9e164e757fde583858f82abfdbdfe8ba729dac5.zip
Fix HE games.
svn-id: r20160
-rw-r--r--scumm/scumm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp
index bb220853af..704266e45f 100644
--- a/scumm/scumm.cpp
+++ b/scumm/scumm.cpp
@@ -2885,7 +2885,7 @@ static bool generateDetectName(const ScummGameSettings *g, int method, char *det
strcat(detectName, ".la0");
break;
case 4:
- if (g->heversion > 0)
+ if (g->heversion == 0)
return false;
strcpy(detectName, g->gameid);
strcat(detectName, ".he0");