You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (ImGui::CollapsingHeader("Patches", ImGuiTreeNodeFlags_DefaultOpen))
56
55
{
57
-
ImGui::TreePush((void*)nullptr);
56
+
ImGui::TreePush("##PATCHES");
58
57
if (ImGui::BeginTable("##SETTINGS_PATCHES", 2, ImGuiTableFlags_Sortable | ImGuiTableFlags_SizingStretchSame, ImVec2(-ImGui::GetStyle().IndentSpacing, 0)))
59
58
{
60
59
constauto& patchesSettings = m_options.Patches;
@@ -78,7 +77,9 @@ void Settings::OnUpdate()
78
77
UpdateAndDrawSetting(
79
78
"Disable Boundary Teleport", "Allows players to access out-of-bounds locations (requires restart to take effect).", m_patches.DisableBoundaryTeleport,
80
79
patchesSettings.DisableBoundaryTeleport);
81
-
UpdateAndDrawSetting("Disable V-Sync (Windows 7 only)", "Disables VSync on Windows 7 to bypass the 60 FPS limit (requires restart to take effect).", m_patches.DisableWin7Vsync, patchesSettings.DisableWin7Vsync);
80
+
UpdateAndDrawSetting(
81
+
"Disable V-Sync (Windows 7 only)", "Disables VSync on Windows 7 to bypass the 60 FPS limit (requires restart to take effect).", m_patches.DisableWin7Vsync,
82
+
patchesSettings.DisableWin7Vsync);
82
83
UpdateAndDrawSetting(
83
84
"Fix Minimap Flicker", "Fixes Minimap flicker caused by some mods (requires restart to take effect).", m_patches.MinimapFlicker,
84
85
patchesSettings.MinimapFlicker);
@@ -89,7 +90,7 @@ void Settings::OnUpdate()
89
90
}
90
91
if (ImGui::CollapsingHeader("CET Development Settings", ImGuiTreeNodeFlags_DefaultOpen))
91
92
{
92
-
ImGui::TreePush((void*)nullptr);
93
+
ImGui::TreePush("##DEV");
93
94
if (ImGui::BeginTable("##SETTINGS_DEV", 2, ImGuiTableFlags_Sortable | ImGuiTableFlags_SizingStretchSame, ImVec2(-ImGui::GetStyle().IndentSpacing, 0)))
"Dump Game Options", "Dumps all game options into main log file (requires restart to take effect).", m_developer.DumpGameOptions,
109
110
developerSettings.DumpGameOptions);
110
111
UpdateAndDrawSetting(
111
-
"Enable JIT for Lua", "Enables JIT compiler for Lua VM, which may majorly speed up the mods. Disable it in case you experience issues as a troubleshooting step (requires restart to take effect).", m_developer.EnableJIT,
112
-
developerSettings.EnableJIT);
112
+
"Enable JIT for Lua",
113
+
"Enables JIT compiler for Lua VM, which may majorly speed up the mods. Disable it in case you experience issues as a troubleshooting step (requires restart to "
0 commit comments