- got rid of the last two TArrays in the filesystem class.

This commit is contained in:
Christoph Oelckers 2023-08-20 01:02:18 +02:00
commit 79e6d068a9
3 changed files with 21 additions and 24 deletions

View file

@ -106,7 +106,7 @@ FFont::FFont (const char *name, const char *nametemplate, const char *filetempla
size_t index;
for(index = 0; index < folderdata.size(); index++)
{
if (infpath.CompareNoCase(folderdata[i].name) == 0) break;
if (infpath.CompareNoCase(folderdata[index].name) == 0) break;
}
if (index < folderdata.size())