X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=src%2Fanimated-mesh.cpp;h=c7013b20363c9353902f12d81ca6f2b9b9780f2f;hb=d78951bd91783c61b312451198beb31f70b0f8b2;hp=dd1a2c152428a50763238d01754e18d9e31e1b3c;hpb=10b175d2183bb4dbe9a53c773465ed714e890290;p=guile-irrlicht.git diff --git a/src/animated-mesh.cpp b/src/animated-mesh.cpp index dd1a2c1..c7013b2 100644 --- a/src/animated-mesh.cpp +++ b/src/animated-mesh.cpp @@ -29,8 +29,8 @@ using namespace irr; SCM -irr_scene_IAnimatedMesh_setAnimationSpeed (SCM animated_mesh, - SCM frames_per_second) +scene_IAnimatedMesh_setAnimationSpeed (SCM animated_mesh, + SCM frames_per_second) { ((scene::IAnimatedMesh*)scm_to_pointer (animated_mesh))-> setAnimationSpeed (scm_to_double (frames_per_second)); @@ -43,8 +43,8 @@ extern "C" { void init_animated_mesh (void) { - DEFINE_GSUBR ("irr_scene_IAnimatedMesh_setAnimationSpeed", 2, 0, 0, - irr_scene_IAnimatedMesh_setAnimationSpeed); + DEFINE_GSUBR ("scene_IAnimatedMesh_setAnimationSpeed", 2, 0, 0, + scene_IAnimatedMesh_setAnimationSpeed); } }