CPlayer: Add missing element to skDashStrafeDistances

This was previously missing the initial element within the array,
causing all the elements in the table to be shifted to the left by one.
This corrects that.
This commit is contained in:
Lioncash 2020-01-29 03:51:47 -05:00
parent 7b89a165bf
commit 29ca2b6062
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ constexpr std::array<float, 8> skStrafeDistances{
};
constexpr std::array<float, 8> skDashStrafeDistances{
30.0f, 22.6f, 10.0f, 10.0f, 10.0f, 10.0f, 10.0f,
11.8f, 30.0f, 22.6f, 10.0f, 10.0f, 10.0f, 10.0f, 10.0f,
};
constexpr std::array<float, 8> skOrbitForwardDistances{