capitalization

This commit is contained in:
jadebenn 2023-12-13 00:17:53 -06:00
parent a99f7a7fc1
commit 68df8af784
2 changed files with 2 additions and 2 deletions

View File

@ -106,7 +106,7 @@ PetComponent::PetComponent(Entity* parent, uint32_t componentId): Component(pare
auto result = query.execQuery();
if (!result.eof()) {
m_walkSpeed = result.getFloatField(0, 2.5f);
m_WalkSpeed = result.getFloatField(0, 2.5f);
m_RunSpeed = result.getFloatField(1, 5.0f);
m_SprintSpeed = result.getFloatField(2, 10.0f);
imaginationDrainRate = result.getFloatField(3, 60.0f);

View File

@ -505,7 +505,7 @@ private:
/**
* The walk speed of the pet
*/
float m_walkSpeed;
float m_WalkSpeed;
/**
* The run speed of the pet