This commit is contained in:
antc13
2016-01-20 09:49:54 +01:00
parent a47317bb32
commit 386e76f642
11 changed files with 24 additions and 24 deletions
+2 -2
View File
@@ -96,10 +96,10 @@ void RenderSystem::fillModels(std::list<std::shared_ptr<RenderJob>>& jobs, World
model = ResourceManager::Load<::Model, true>(resource);
} catch (const Resource::StillLoadingException&) {
//continue;
model = ResourceManager::Load<::Model>("Models/coolCube");
model = ResourceManager::Load<::Model>("Models/coolCube"); // 360NoScope StillLoading mesh
} catch (const std::exception&) {
try {
model = ResourceManager::Load<::Model>("Models/coolCube");
model = ResourceManager::Load<::Model>("Models/coolCube"); // 360NoScope Error mesh
} catch (const std::exception&) {
continue;
}