Recognized FOOFOO.LA0 as a game (The Dig and Full Throttle).

svn-id: r6600
This commit is contained in:
Marcus Comstedt 2003-02-12 13:08:19 +00:00
parent 6c4d3ece6e
commit d5257a4270

View File

@ -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;