add generator layers

This commit is contained in:
MihailRis
2024-08-17 18:11:52 +03:00
parent 30925df319
commit 2a767a3638
7 changed files with 125 additions and 14 deletions
+5 -1
View File
@@ -473,7 +473,11 @@ void ContentLoader::load() {
auto& def = builder.generators.create(full);
loadGenerator(def, full, name);
try {
loadGenerator(def, full, name);
} catch (const std::runtime_error& err) {
throw std::runtime_error("generator '"+full+"': "+err.what());
}
}
}