diff --git a/source/Irrlicht/CB3DJSONMeshFileLoader.cpp b/source/Irrlicht/CB3DJSONMeshFileLoader.cpp index 2f4425a5..8a479002 100644 --- a/source/Irrlicht/CB3DJSONMeshFileLoader.cpp +++ b/source/Irrlicht/CB3DJSONMeshFileLoader.cpp @@ -44,6 +44,7 @@ bool CB3DJSONMeshFileLoader::isALoadableFileExtension( IAnimatedMesh* parseModel(json model) { + return nullptr; } @@ -55,12 +56,8 @@ IAnimatedMesh* CB3DJSONMeshFileLoader::createMesh(io::IReadFile* file) { return nullptr; } - // println("I am loading your cool file, yay"); - - // printf("the file is called: "); - // println(file->getFileName().c_str()); - // So here we turn this mangled disaster into a C string. + // Please consider this the equivalent of duct taping a chainsaw onto a car to cut your lawn. // auto buffer = std::make_unique(file->getSize()); char* buffer = new char[file->getSize()];