refactor(Core/Movement): Naming convention (#13989)

update codestyle

Co-authored-by: Maelthyrr <lynethris@protonmail.ch>
This commit is contained in:
Maelthyr
2022-12-02 09:52:01 +01:00
committed by GitHub
parent b45a35e4c1
commit d2f440c3e8
19 changed files with 149 additions and 148 deletions

View File

@@ -791,7 +791,7 @@ void MotionMaster::MoveRotate(uint32 time, RotateDirection direction)
Mutate(new RotateMovementGenerator(time, direction), MOTION_SLOT_ACTIVE);
}
void MotionMaster::propagateSpeedChange()
void MotionMaster::PropagateSpeedChange()
{
/*Impl::container_type::iterator it = Impl::c.begin();
for (; it != end(); ++it)
@@ -801,7 +801,7 @@ void MotionMaster::propagateSpeedChange()
for (int i = 0; i <= _top; ++i)
{
if (Impl[i])
Impl[i]->unitSpeedChanged();
Impl[i]->UnitSpeedChanged();
}
}