summaryrefslogtreecommitdiff
path: root/mm/2s2h/DeveloperTools/SaveEditor.cpp
diff options
context:
space:
mode:
authorEblo <7004497+Eblo@users.noreply.github.com>2025-09-16 10:55:32 -0400
committerEblo <7004497+Eblo@users.noreply.github.com>2025-09-16 10:55:32 -0400
commitd9681052b2f2ab042f0203f0c56f132bdff25a98 (patch)
treea99d35fadd0825181fb2a57f3bf404e62b5ae1b1 /mm/2s2h/DeveloperTools/SaveEditor.cpp
parentf560f1df0af30f76725f310e0b6ec1646f6137c8 (diff)
Enhancements: linearVelocity => speedXZ
Diffstat (limited to 'mm/2s2h/DeveloperTools/SaveEditor.cpp')
-rw-r--r--mm/2s2h/DeveloperTools/SaveEditor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/2s2h/DeveloperTools/SaveEditor.cpp b/mm/2s2h/DeveloperTools/SaveEditor.cpp
index 136de33bd..7d8a808b7 100644
--- a/mm/2s2h/DeveloperTools/SaveEditor.cpp
+++ b/mm/2s2h/DeveloperTools/SaveEditor.cpp
@@ -1428,7 +1428,7 @@ void DrawPlayerTab() {
ImGui::Text("Link's Speed");
UIWidgets::PushStyleCombobox(formColor);
ImGui::PushItemWidth(ImGui::GetFontSize() * 6);
- ImGui::InputScalar("Linear Velocity", ImGuiDataType_Float, &player->linearVelocity);
+ ImGui::InputScalar("XZ Speed", ImGuiDataType_Float, &player->speedXZ);
ImGui::InputScalar("Y Velocity", ImGuiDataType_Float, &player->actor.velocity.y);
ImGui::InputScalar("Ledge Height", ImGuiDataType_Float, &player->yDistToLedge);
ImGui::InputScalar("Invincibility Timer", ImGuiDataType_S16, &player->invincibilityTimer);