| 519 | } |
| 520 | |
| 521 | Filesystem_Stream::InputStream FileFinder::OpenText(std::string_view name) { |
| 522 | DirectoryTree::Args args = { MakePath("Text", name), TEXT_TYPES, 1, false }; |
| 523 | return open_generic_with_fallback("Text", name, args); |
| 524 | } |
| 525 | |
| 526 | bool FileFinder::IsMajorUpdatedTree() { |
| 527 | auto fs = Game(); |
nothing calls this directly
no test coverage detected