Use std::string for LanguageMetadata::file

This commit is contained in:
Jonathan G Rennison
2024-01-05 22:21:02 +00:00
parent a573d065e1
commit 0460b820f3
4 changed files with 8 additions and 7 deletions

View File

@@ -91,7 +91,7 @@ static_assert(sizeof(LanguagePackHeader) % 4 == 0);
/** Metadata about a single language. */
struct LanguageMetadata : public LanguagePackHeader {
char file[MAX_PATH]; ///< Name of the file we read this data from.
std::string file; ///< Name of the file we read this data from.
};
/** Type for the list of language meta data. */