mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-05 09:49:14 +00:00
Recognized FOOFOO.LA0 as a game (The Dig and Full Throttle).
svn-id: r6600
This commit is contained in:
parent
6c4d3ece6e
commit
d5257a4270
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user