Commit bf7692d4 authored by cutealien's avatar cutealien

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
parent 2b553bee
......@@ -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).
......
......@@ -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();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment