DREAMCAST: Fix listing of savefiles.

We introduced a new pattern '#' in 06641f29a7.
Starting from that commit all backends were supposed to support it. Dreamcast
was missed. To support it in Dreamcast we now use Common::String::matchString
to do pattern matching.
This commit is contained in:
Johannes Schickel 2016-02-25 21:05:50 +01:00
parent fb007a5914
commit 47f82d439d

View File

@ -165,30 +165,7 @@ static bool tryDelete(const char *filename, int vm)
return true;
}
static bool matches(const char *glob, const char *name)
{
while(*glob)
if(*glob == '*') {
while(*glob == '*')
glob++;
do {
if((*name == *glob || *glob == '?') &&
matches(glob, name))
return true;
} while(*name++);
return false;
} else if(!*name)
return false;
else if(*glob == '?' || *glob == *name) {
glob++;
name++;
}
else
return false;
return !*name;
}
static void tryList(const char *glob, int vm, Common::StringArray &list)
static void tryList(const Common::String &glob, int vm, Common::StringArray &list)
{
struct vmsinfo info;
struct superblock super;
@ -205,7 +182,7 @@ static void tryList(const char *glob, int vm, Common::StringArray &list)
char buf[16];
strncpy(buf, (char *)de.entry+4, 12);
buf[12] = 0;
if (matches(glob, buf))
if (glob.matchString(buf))
list.push_back(buf);
}
}
@ -425,7 +402,7 @@ Common::StringArray VMSaveManager::listSavefiles(const Common::String &pattern)
Common::StringArray list;
for (int i=0; i<24; i++)
tryList(pattern.c_str(), i, list);
tryList(pattern, i, list);
return list;
}