From da7596f85cef61193ecebb0c54eec6f1e6c2d51e Mon Sep 17 00:00:00 2001 From: Javier Sancho Date: Sun, 13 Oct 2019 15:33:50 +0200 Subject: [PATCH] irr_scene_ISceneManager_addCameraSceneNode --- include/ISceneManager.h | 12 ++++++------ src/ISceneManager.cpp | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/include/ISceneManager.h b/include/ISceneManager.h index d3ee3ae..92812d1 100644 --- a/include/ISceneManager.h +++ b/include/ISceneManager.h @@ -45,12 +45,12 @@ extern "C" { bool alsoAddIfMeshPointerZero); irr_scene_ICameraSceneNode* - addCameraSceneNode(irr_scene_ISceneManager* smgr, - irr_scene_ISceneNode* parent, - irr_core_vector3df* position, - irr_core_vector3df* lookat, - int32_t id, - bool makeActive); + irr_scene_ISceneManager_addCameraSceneNode(irr_scene_ISceneManager* smgr, + irr_scene_ISceneNode* parent, + irr_core_vector3df* position, + irr_core_vector3df* lookat, + int32_t id, + bool makeActive); irr_scene_IAnimatedMesh* irr_scene_ISceneManager_getMesh(irr_scene_ISceneManager* smgr, diff --git a/src/ISceneManager.cpp b/src/ISceneManager.cpp index 230a3ea..4e87481 100644 --- a/src/ISceneManager.cpp +++ b/src/ISceneManager.cpp @@ -53,12 +53,12 @@ extern "C" { } irr_scene_ICameraSceneNode* - addCameraSceneNode(irr_scene_ISceneManager* smgr, - irr_scene_ISceneNode* parent, - irr_core_vector3df* position, - irr_core_vector3df* lookat, - int32_t id, - bool makeActive) + irr_scene_ISceneManager_addCameraSceneNode(irr_scene_ISceneManager* smgr, + irr_scene_ISceneNode* parent, + irr_core_vector3df* position, + irr_core_vector3df* lookat, + int32_t id, + bool makeActive) { const irr::core::vector3df& iPosition = irr::core::vector3df(position->x, position->y, -- 2.39.2