diff options
-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; |