Fix wrong type
not much of big dealy really
This commit is contained in:
parent
97bdb137ec
commit
ce0f7e4597
@ -269,7 +269,7 @@ namespace cheat::feature
|
||||
|
||||
ConfigWidget("Apply Key", f_ApplyKey, true);
|
||||
ConfigWidget("Reset Key", f_ResetKey, true);
|
||||
ConfigWidget("Delay", f_Delay, 1.0f, 1.0f, 1000000000.0f, "Delay to repeat animation");
|
||||
ConfigWidget("Delay", f_Delay, 1, 1, 1000000000, "Delay to repeat animation");
|
||||
}
|
||||
}
|
||||
ImGui::EndGroupPanel();
|
||||
|
@ -12,7 +12,7 @@ namespace cheat::feature
|
||||
config::Field<std::string> f_Animation;
|
||||
config::Field<Hotkey> f_ApplyKey;
|
||||
config::Field<Hotkey> f_ResetKey;
|
||||
config::Field<float> f_Delay;
|
||||
config::Field<int> f_Delay;
|
||||
|
||||
const FeatureGUIInfo& GetGUIInfo() const override;
|
||||
void DrawMain() override;
|
||||
|
Loading…
Reference in New Issue
Block a user