Make it so we can inline this

This commit is contained in:
jordan4ibanez 2023-11-28 05:09:46 -05:00
parent b4233a513b
commit ec907d8771
2 changed files with 5 additions and 2 deletions

View File

@ -185,10 +185,11 @@ bool load(json data) {
return true;
}
void CB3DJSONMeshFileLoader::cleanUp(std::string failure) {
CSkinnedMesh* CB3DJSONMeshFileLoader::cleanUp(std::string failure) {
os::Printer::log(failure.c_str(), ELL_WARNING);
AnimatedMesh->drop();
AnimatedMesh = 0;
return AnimatedMesh;
}
/**
@ -218,6 +219,8 @@ bool CB3DJSONMeshFileLoader::parseJSONFile(io::IReadFile* file) {
os::Printer::log("JSON: Failed to parse!", ELL_WARNING);
return false;
}
// I'm not sure if buffer and output gets dropped here.
return true;
}

View File

@ -27,7 +27,7 @@ private:
json JSONDataContainer;
// Methods.
void cleanUp(std::string);
CSkinnedMesh* cleanUp(std::string);
bool parseJSONFile(io::IReadFile* file);
public: