(svn r27644) -Codechange: Split GetFiosItem into BuildFileList and FindItem, and move both to FileList.

This commit is contained in:
alberth
2016-09-04 12:54:52 +00:00
parent 95bb103a23
commit d6cd3b1605
4 changed files with 66 additions and 64 deletions

View File

@@ -200,6 +200,9 @@ public:
this->files.Compact();
}
void BuildFileList(SaveLoadDialogMode mode);
const FiosItem *FindItem(const char *file);
SmallVector<FiosItem, 32> files; ///< The list of files.
};
@@ -235,6 +238,4 @@ int CDECL CompareFiosItems(const FiosItem *a, const FiosItem *b);
extern const TextColour _fios_colours[];
void BuildFileList(SaveLoadDialogMode mode);
#endif /* FIOS_H */