From 90c56e796b764530200c8012b11fb33100d72a01 Mon Sep 17 00:00:00 2001 From: Philip Rosedale Date: Tue, 23 Apr 2013 12:07:12 -0700 Subject: [PATCH] One... last.... const.... --- interface/src/Head.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/src/Head.h b/interface/src/Head.h index 190009d962..0893d7a372 100644 --- a/interface/src/Head.h +++ b/interface/src/Head.h @@ -155,7 +155,7 @@ class Head : public AvatarData { void setLeanForward(float dist); void setLeanSideways(float dist); void addLean(float x, float z); - float getLastMeasuredHeadYaw() {return _head.yawRate;} + float getLastMeasuredHeadYaw() const {return _head.yawRate;} float getBodyYaw() {return _bodyYaw;}; void addBodyYaw(float y) {_bodyYaw += y;};