- whitespace cleanup, updated from Raze.
This commit is contained in:
parent
3b879c5656
commit
e60e6967c0
182 changed files with 835 additions and 824 deletions
|
|
@ -97,20 +97,20 @@ void FCycler::Update(double diff)
|
|||
{
|
||||
double mult, angle;
|
||||
double step = m_end - m_start;
|
||||
|
||||
|
||||
if (!m_shouldCycle)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
m_time += diff;
|
||||
if (m_time >= m_cycle)
|
||||
{
|
||||
m_time = m_cycle;
|
||||
}
|
||||
|
||||
|
||||
mult = m_time / m_cycle;
|
||||
|
||||
|
||||
switch (m_cycleType)
|
||||
{
|
||||
case CYCLE_Linear:
|
||||
|
|
@ -149,7 +149,7 @@ void FCycler::Update(double diff)
|
|||
}
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
if (m_time == m_cycle)
|
||||
{
|
||||
m_time = 0.;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue