Drop unused dependency on FileSystem in mesh loaders

This commit is contained in:
numzero
2023-03-13 22:28:09 +03:00
committed by sfan5
parent 25a7074c9a
commit 5a1565072a
5 changed files with 7 additions and 17 deletions

View File

@ -79,8 +79,8 @@ CSceneManager::CSceneManager(video::IVideoDriver* driver, io::IFileSystem* fs,
// TODO: now that we have multiple scene managers, these should be
// shallow copies from the previous manager if there is one.
MeshLoaderList.push_back(new CXMeshFileLoader(this, FileSystem));
MeshLoaderList.push_back(new COBJMeshFileLoader(this, FileSystem));
MeshLoaderList.push_back(new CXMeshFileLoader(this));
MeshLoaderList.push_back(new COBJMeshFileLoader(this));
MeshLoaderList.push_back(new CB3DMeshFileLoader(this));
}