X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=src%2Fanimated-mesh-scene-node.cpp;fp=src%2Fanimated-mesh-scene-node.cpp;h=dc46e8010a2483abcd6d32d0557bf15eeead2dbe;hb=789237bc01f8b2172725b51dbc7ae72b9a30be7a;hp=ceb5ec201cbe4000d39728ed9ecfaabe582067fa;hpb=e88bb6a9636fd75d12e71993cac35b9d4cff0d77;p=guile-irrlicht.git diff --git a/src/animated-mesh-scene-node.cpp b/src/animated-mesh-scene-node.cpp index ceb5ec2..dc46e80 100644 --- a/src/animated-mesh-scene-node.cpp +++ b/src/animated-mesh-scene-node.cpp @@ -21,6 +21,7 @@ #include #include + #include "animated-mesh-md2.h" #include "animated-mesh-scene-node.h" #include "wrapped.h" @@ -40,11 +41,11 @@ extern "C" { wrap_animated_mesh_scene_node, unwrap_animated_mesh_scene_node); SCM - irr_scene_setMD2Animation (SCM wrappedAnimatedMeshSceneNode, + irr_scene_setMD2Animation (SCM wrapped_animated_mesh_scene_node, SCM anim) { irr::scene::IAnimatedMeshSceneNode* node = - unwrap_animated_mesh_scene_node (wrappedAnimatedMeshSceneNode); + unwrap_animated_mesh_scene_node (wrapped_animated_mesh_scene_node); bool result = node->setMD2Animation (scm_to_md2_animation_type (anim)); return scm_from_bool (result); }