MyAvatar: coding convention fix for updateEyeContactTarget()

This commit is contained in:
Anthony J. Thibault 2016-04-25 09:27:43 -07:00
parent 0da3fb8eee
commit 0c200e8c00

View file

@ -339,6 +339,7 @@ void MyAvatar::updateEyeContactTarget(float deltaTime) {
_eyeContactTarget = (randFloat() < EYE_TO_MOUTH_CHANCE) ? MOUTH : LEFT_EYE;
break;
case MOUTH:
default:
_eyeContactTarget = (randFloat() < FIFTY_FIFTY_CHANCE) ? RIGHT_EYE : LEFT_EYE;
break;
}