diff --git a/backends/dc/selector.cpp b/backends/dc/selector.cpp index 7c2686fc25e..24ad3588eaf 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;