mirror of
https://github.com/0TheSpy/Seaside.git
synced 2025-09-19 04:06:03 +08:00
Update Menu.hpp
This commit is contained in:
@ -2003,10 +2003,15 @@ long __stdcall hkEndScene(IDirect3DDevice9* pDevice)
|
|||||||
ImGui::Text(XorStr("0TheSpy"));
|
ImGui::Text(XorStr("0TheSpy"));
|
||||||
ImGui::InvisibleButton("##inv", ImVec2(0, 0));
|
ImGui::InvisibleButton("##inv", ImVec2(0, 0));
|
||||||
ImGui::TextColored(colwhite, XorStr("Check for updates"));
|
ImGui::TextColored(colwhite, XorStr("Check for updates"));
|
||||||
style->ItemSpacing = ImVec2(20.0f, 33.0f);
|
|
||||||
ImGui::Text(XorStr("unknowncheats.me"));
|
ImGui::Text(XorStr("unknowncheats.me"));
|
||||||
|
|
||||||
if (ImGui::Checkbox("Output NetMsg, UserMsg, DevMsg", g_Options.debugstuff))
|
ImGui::InvisibleButton("##inv", ImVec2(0, 24));
|
||||||
|
|
||||||
|
if (ImGui::Button("Unhook", ImVec2(70, 22)))
|
||||||
|
opt.unhook = true;
|
||||||
|
|
||||||
|
ImGui::SameLine(); ImGui::SetCursorPosX(ImGui::GetCursorPosX() + 20);
|
||||||
|
if (ImGui::Checkbox("Output debug messages", g_Options.debugstuff))
|
||||||
{
|
{
|
||||||
if (*g_Options.debugstuff.value)
|
if (*g_Options.debugstuff.value)
|
||||||
{
|
{
|
||||||
@ -2020,17 +2025,12 @@ long __stdcall hkEndScene(IDirect3DDevice9* pDevice)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
style->ItemSpacing = ImVec2(20.0f, 0.0f);
|
|
||||||
|
|
||||||
if (ImGui::Button("Unhook", ImVec2(70, 22)))
|
|
||||||
opt.unhook = true;
|
|
||||||
|
|
||||||
ImGui::NextColumn();
|
ImGui::NextColumn();
|
||||||
|
|
||||||
static int selected = 0;
|
static int selected = 0;
|
||||||
static char name[255] = "";
|
static char name[255] = "";
|
||||||
|
|
||||||
style->ItemSpacing = ImVec2(20.0f, 9.0f);
|
style->ItemSpacing = ImVec2(7.0f, 2.0f);
|
||||||
if (ImGui::BeginListBox("##cfgs", ImVec2(251.0f, 5 * ImGui::GetTextLineHeightWithSpacing())))
|
if (ImGui::BeginListBox("##cfgs", ImVec2(251.0f, 5 * ImGui::GetTextLineHeightWithSpacing())))
|
||||||
{
|
{
|
||||||
ImGui::PushFont(ifontmini);
|
ImGui::PushFont(ifontmini);
|
||||||
|
Reference in New Issue
Block a user