diff options
-rw-r--r-- | gui/launcher.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/launcher.cpp b/gui/launcher.cpp index 43188b3ce6..61814e9c89 100644 --- a/gui/launcher.cpp +++ b/gui/launcher.cpp @@ -291,7 +291,7 @@ GameList findGame(FilesystemNode *dir) { strcpy(detectName, v->filename); strcpy(detectName2, v->filename); strcat(detectName, ".000"); - if (v->features & GF_AFTER_V7) { + if (v->version >= 7) { strcat(detectName2, ".la0"); } else if (v->features & GF_HUMONGOUS) strcat(detectName2, ".he0"); |