Merge branch releases/1.8 revisions 5188:5194 into trunk

- Fix serialization of the InputReceiverEnabled flag in CCameraSceneNode


git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@5195 dfc29bdd-3216-0410-991c-e03cc46cb475
master
cutealien 2015-11-28 13:12:39 +00:00
parent 2b553bee89
commit bf7692d465
2 changed files with 2 additions and 1 deletions

View File

@ -123,6 +123,7 @@ Changes in 1.9 (not yet released)
--------------------------
Changes in 1.8.4
- Fix serialization of the InputReceiverEnabled flag in CCameraSceneNode
- Fix pasting text from X11 applications to Irrlicht. Thanks @est31 for the patch.
- Tests give now a warning when stabilizing screenshots failed. Aslo trying more often now (a hack as taking screenshots otherwise fails often in windowed mode on some systems).

View File

@ -337,7 +337,7 @@ void CCameraSceneNode::deserializeAttributes(io::IAttributes* in, io::SAttribute
ZFar = in->getAttributeAsFloat("ZFar");
TargetAndRotationAreBound = in->getAttributeAsBool("Binding");
if ( in->findAttribute("ReceiveInput") )
InputReceiverEnabled = in->getAttributeAsBool("InputReceiverEnabled");
InputReceiverEnabled = in->getAttributeAsBool("ReceiveInput");
recalculateProjectionMatrix();
recalculateViewArea();