From dfc729739cd16cb86301f3da7c2e40c9a614a41f Mon Sep 17 00:00:00 2001 From: Mathieu Schroeter Date: Thu, 26 Oct 2017 17:06:28 +0200 Subject: [PATCH] Cosmetic: fix indent after previous commit --- src/blupi.cxx | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/src/blupi.cxx b/src/blupi.cxx index 5ed66d2..8f9303a 100644 --- a/src/blupi.cxx +++ b/src/blupi.cxx @@ -213,22 +213,21 @@ UpdateFrame (void) if (g_pEvent->IsShift ()) // screen shifting g_pEvent->DecorAutoShift (); - { - if (!g_pEvent->GetPause ()) - { - speed = g_pEvent->GetSpeed () * g_speedRate; - for (i = 0; i < speed; i++) - { - g_pDecor->BlupiStep (i == 0); // move all blupi - g_pDecor->MoveStep (i == 0); // move the environment - g_pEvent->DemoStep (); // forward the recording or demo playing - } - } - g_pEvent->DecorAutoShift (); - g_pDecor->Build (clip, posMouse); // build the environment - g_pDecor->NextPhase (1); // rebuild the map sometimes + if (!g_pEvent->GetPause ()) + { + speed = g_pEvent->GetSpeed () * g_speedRate; + for (i = 0; i < speed; i++) + { + g_pDecor->BlupiStep (i == 0); // move all blupi + g_pDecor->MoveStep (i == 0); // move the environment + g_pEvent->DemoStep (); // forward the recording or demo playing + } } + + g_pEvent->DecorAutoShift (); + g_pDecor->Build (clip, posMouse); // build the environment + g_pDecor->NextPhase (1); // rebuild the map sometimes } if (phase == EV_PHASE_BUILD)