i encountered a rendering problem with BoneSceneNodes.
I add a child (an animated meshscenenode (e.g. a weapon)) to the fpscamera
and add another scenenode (the ammunition) to a joint of this weapon.
camera->addChild(crossbow);
IBoneSceneNode * bone = crossbow->getJointNode("arrow");
bone->addChild(arrow);
Without camera movements, everything is all right and looks like:

But as soon as the camera is rotated (via mousecontrol), the rendering of the child-arrow is delayed.

In the enginecode (1.8 + 1.9 + latestSVN) i found the line
CBoneSceneNode.cpp:OnAnimate():77
//updateAbsolutePosition();
I don't know, why this is commented out (maybe some performance improvement?),
but if i reactivate this line, everything works fine.
Best regards