From b7e60746fa36678d11ae672cb6879f7b66ca7c55 Mon Sep 17 00:00:00 2001 From: jordan4ibanez Date: Wed, 29 Nov 2023 02:04:32 -0500 Subject: [PATCH] bsp is gone --- source/Irrlicht/CB3DMeshFileLoader.cpp | 2 +- source/Irrlicht/CB3DMeshFileLoader.h | 2 +- source/Irrlicht/COBJMeshFileLoader.cpp | 2 +- source/Irrlicht/CXMeshFileLoader.cpp | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/source/Irrlicht/CB3DMeshFileLoader.cpp b/source/Irrlicht/CB3DMeshFileLoader.cpp index f4b26190..9f95906f 100644 --- a/source/Irrlicht/CB3DMeshFileLoader.cpp +++ b/source/Irrlicht/CB3DMeshFileLoader.cpp @@ -33,7 +33,7 @@ CB3DMeshFileLoader::CB3DMeshFileLoader(scene::ISceneManager* smgr) //! returns true if the file maybe is able to be loaded by this class -//! based on the file extension (e.g. ".bsp") +//! based on the file extension (e.g. ".b3d") bool CB3DMeshFileLoader::isALoadableFileExtension(const io::path& filename) const { return core::hasFileExtension ( filename, "b3d" ); diff --git a/source/Irrlicht/CB3DMeshFileLoader.h b/source/Irrlicht/CB3DMeshFileLoader.h index 903c1521..32e78868 100644 --- a/source/Irrlicht/CB3DMeshFileLoader.h +++ b/source/Irrlicht/CB3DMeshFileLoader.h @@ -30,7 +30,7 @@ public: CB3DMeshFileLoader(scene::ISceneManager* smgr); //! returns true if the file maybe is able to be loaded by this class - //! based on the file extension (e.g. ".bsp") + //! based on the file extension (e.g. ".b3d") bool isALoadableFileExtension(const io::path& filename) const override; //! creates/loads an animated mesh from the file. diff --git a/source/Irrlicht/COBJMeshFileLoader.cpp b/source/Irrlicht/COBJMeshFileLoader.cpp index 6649b7bc..96441879 100644 --- a/source/Irrlicht/COBJMeshFileLoader.cpp +++ b/source/Irrlicht/COBJMeshFileLoader.cpp @@ -40,7 +40,7 @@ COBJMeshFileLoader::~COBJMeshFileLoader() //! returns true if the file maybe is able to be loaded by this class -//! based on the file extension (e.g. ".bsp") +//! based on the file extension (e.g. ".b3d") bool COBJMeshFileLoader::isALoadableFileExtension(const io::path& filename) const { return core::hasFileExtension ( filename, "obj" ); diff --git a/source/Irrlicht/CXMeshFileLoader.cpp b/source/Irrlicht/CXMeshFileLoader.cpp index cdcd7a86..24455f2a 100644 --- a/source/Irrlicht/CXMeshFileLoader.cpp +++ b/source/Irrlicht/CXMeshFileLoader.cpp @@ -36,7 +36,7 @@ CXMeshFileLoader::CXMeshFileLoader(scene::ISceneManager* smgr) //! returns true if the file maybe is able to be loaded by this class -//! based on the file extension (e.g. ".bsp") +//! based on the file extension (e.g. ".b3d") bool CXMeshFileLoader::isALoadableFileExtension(const io::path& filename) const { return core::hasFileExtension ( filename, "x" );