[nostalgia/studio] Update for new String beginsWith API

This commit is contained in:
Gary Talent 2023-01-03 03:32:16 -06:00
parent 3cd638737a
commit 497bbc1a17

View File

@ -53,7 +53,7 @@ void Project::buildFileIndex() noexcept {
m_fileExtFileMap.clear(); m_fileExtFileMap.clear();
std::sort(files.begin(), files.end()); std::sort(files.begin(), files.end());
for (const auto &file : files) { for (const auto &file : files) {
if (!file.beginsWith("/.nostalgia/")) { if (!beginsWith(file, "/.nostalgia/")) {
indexFile(file); indexFile(file);
} }
} }