mirror of https://github.com/AxioDL/metaforce.git
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:
parent
7b89a165bf
commit
29ca2b6062
|
@ -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{
|
||||
|
|
Loading…
Reference in New Issue