X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=src%2Fanimated-mesh.cpp;h=80b6229d8adb941b85563029767dc4b6cd63a415;hb=cda8d6e3636e9ad6878b8e6b0c4449f6f9c635f0;hp=b79f196e668b2edca7eb347191fb234545f0fede;hpb=b298e30f299d7c0b91c00f2455b4bc1efabe62e3;p=guile-irrlicht.git diff --git a/src/animated-mesh.cpp b/src/animated-mesh.cpp index b79f196..80b6229 100644 --- a/src/animated-mesh.cpp +++ b/src/animated-mesh.cpp @@ -21,7 +21,6 @@ #include #include - #include "animated-mesh.h" #include "gsubr.h" @@ -30,8 +29,8 @@ using namespace irr; SCM -irr_scene_IAnimatedMesh_setAnimationSpeed (SCM animated_mesh, - SCM frames_per_second) +IAnimatedMesh_setAnimationSpeed (SCM animated_mesh, + SCM frames_per_second) { ((scene::IAnimatedMesh*)scm_to_pointer (animated_mesh))-> setAnimationSpeed (scm_to_double (frames_per_second)); @@ -44,8 +43,7 @@ extern "C" { void init_animated_mesh (void) { - DEFINE_GSUBR ("irr_scene_IAnimatedMesh_setAnimationSpeed", 2, 0, 0, - irr_scene_IAnimatedMesh_setAnimationSpeed); + DEFINE_GSUBR ("IAnimatedMesh_setAnimationSpeed", 2, 0, 0, IAnimatedMesh_setAnimationSpeed); } }