small fix with reading from file of seedpoints

This commit is contained in:
ElonOlsson
2022-05-04 15:57:39 -04:00
committed by Alexander Bock
parent 18cc19416d
commit 9bdc9af3de
@@ -845,7 +845,7 @@ std::unordered_map<std::string, std::vector<glm::vec3>>
continue;
}
std::ifstream seedFile(spFile);
std::ifstream seedFile(seedFilePath);
if (!seedFile.good()) {
LERROR(fmt::format("Could not open seed points file '{}'", seedFilePath));
outMap.clear();