From 1e4771fe27c5a9d8c0d8e0afbef8608f14d4e637 Mon Sep 17 00:00:00 2001 From: Jeffrey Ventrella Date: Fri, 24 May 2013 18:05:14 -0700 Subject: [PATCH] fix --- interface/src/Head.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/src/Head.cpp b/interface/src/Head.cpp index 28b526894b..1486013c9c 100644 --- a/interface/src/Head.cpp +++ b/interface/src/Head.cpp @@ -530,7 +530,7 @@ void Head::updateHair(float deltaTime) { for (int t = 0; t < NUM_HAIR_TUFTS; t ++) { - float fraction = (float)t / (float)(NUM_HAIR_TUFTS-1); + float fraction = (float)t / (float)(NUM_HAIR_TUFTS - 1); float angle = -20.0f + 40.0f * fraction;