diff options
author | Marcus Comstedt | 2003-02-12 13:08:19 +0000 |
---|---|---|
committer | Marcus Comstedt | 2003-02-12 13:08:19 +0000 |
commit | d5257a42703dc1acdaae3497e9e7c575ad08adfc (patch) | |
tree | 14f2611e3332c25fb0a5b69caf139f550afc0a0a | |
parent | 6c4d3ece6e71d1fb284cad37c82a286a04e7f7ae (diff) | |
download | scummvm-rg350-d5257a42703dc1acdaae3497e9e7c575ad08adfc.tar.gz scummvm-rg350-d5257a42703dc1acdaae3497e9e7c575ad08adfc.tar.bz2 scummvm-rg350-d5257a42703dc1acdaae3497e9e7c575ad08adfc.zip |
Recognized FOOFOO.LA0 as a game (The Dig and Full Throttle).
svn-id: r6600
-rw-r--r-- | backends/dc/selector.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/backends/dc/selector.cpp b/backends/dc/selector.cpp index 7c2686fc25..24ad3588ea 100644 --- a/backends/dc/selector.cpp +++ b/backends/dc/selector.cpp @@ -148,7 +148,8 @@ static bool isGame(const char *fn, char *base) { int l = strlen(fn); if(l>4 && (!strcasecmp(fn+l-4, ".000") || - !strcasecmp(fn+l-4, ".SM0"))) { + !strcasecmp(fn+l-4, ".SM0") || + !strcasecmp(fn+l-4, ".LA0"))) { strcpy(base, fn); base[l-4]='\0'; return true; |