diff --git a/source/Irrlicht/CB3DJSONMeshFileLoader.cpp b/source/Irrlicht/CB3DJSONMeshFileLoader.cpp index 5f7f6776..3f80b35b 100644 --- a/source/Irrlicht/CB3DJSONMeshFileLoader.cpp +++ b/source/Irrlicht/CB3DJSONMeshFileLoader.cpp @@ -30,6 +30,9 @@ void println(const char* data) { printf(data); printf("\n"); } +void println(std::string data) { + printf((data + "\n").c_str()); +} const char * const boolToString(bool b) { return b ? "true" : "false";