aboutsummaryrefslogtreecommitdiff
path: root/source/Irrlicht/CXMeshFileLoader.cpp
diff options
context:
space:
mode:
authornumzero <numzer0@yandex.ru>2023-03-13 22:28:09 +0300
committersfan5 <sfan5@live.de>2023-03-19 19:47:43 +0100
commit5a1565072abeecf9fc5a3ffc450d5ab8ff660021 (patch)
tree28a714593d8ac90192226b19477fd8c099868136 /source/Irrlicht/CXMeshFileLoader.cpp
parent25a7074c9af510b6d93d8e84309997e45bad094f (diff)
downloadirrlicht-5a1565072abeecf9fc5a3ffc450d5ab8ff660021.tar.xz
Drop unused dependency on FileSystem in mesh loaders
Diffstat (limited to 'source/Irrlicht/CXMeshFileLoader.cpp')
-rw-r--r--source/Irrlicht/CXMeshFileLoader.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/Irrlicht/CXMeshFileLoader.cpp b/source/Irrlicht/CXMeshFileLoader.cpp
index 7603ec5..2a365ac 100644
--- a/source/Irrlicht/CXMeshFileLoader.cpp
+++ b/source/Irrlicht/CXMeshFileLoader.cpp
@@ -10,7 +10,6 @@
#include "coreutil.h"
#include "ISceneManager.h"
#include "IVideoDriver.h"
-#include "IFileSystem.h"
#include "IReadFile.h"
#ifdef _DEBUG
@@ -24,7 +23,7 @@ namespace scene
{
//! Constructor
-CXMeshFileLoader::CXMeshFileLoader(scene::ISceneManager* smgr, io::IFileSystem* fs)
+CXMeshFileLoader::CXMeshFileLoader(scene::ISceneManager* smgr)
: AnimatedMesh(0), Buffer(0), P(0), End(0), BinaryNumCount(0), Line(0),
CurFrame(0), MajorVersion(0), MinorVersion(0), BinaryFormat(false), FloatSize(0)
{