style cleanup

This commit is contained in:
Campbell Barton
2012-07-21 22:58:08 +00:00
parent 049dd8a0ff
commit 9b51503307
42 changed files with 304 additions and 288 deletions

View File

@@ -302,9 +302,9 @@ public:
virtual int GetMotionBlurState() { return m_motionblur; }
virtual void SetMotionBlurState(int newstate)
{
if(newstate<0)
if (newstate < 0)
m_motionblur = 0;
else if(newstate>2)
else if (newstate > 2)
m_motionblur = 2;
else
m_motionblur = newstate;