add lod warning on connection when lod is enabled

This commit is contained in:
Stanley Dimant
2025-01-26 15:08:01 +01:00
parent aa8d34ff46
commit 831a3dd1ee
4 changed files with 27 additions and 6 deletions

View File

@@ -608,11 +608,12 @@ public class SettingsUi : WindowMediatorSubscriberBase
}
bool stopWhining = _configService.Current.DebugStopWhining;
if (ImGui.Checkbox("Do not notify for modified game files", ref stopWhining))
if (ImGui.Checkbox("Do not notify for modified game files or enabled LOD", ref stopWhining))
{
_configService.Current.DebugStopWhining = stopWhining;
}
_uiShared.DrawHelpText("Having modified game files will still mark your logs with UNSUPPORTED and you will not receive support, message shown or not.");
_uiShared.DrawHelpText("Having modified game files will still mark your logs with UNSUPPORTED and you will not receive support, message shown or not." + UiSharedService.TooltipSeparator
+ "Keeping LOD enabled can lead to more crashes. Use at your own risk.");
}
private void DrawFileStorageSettings()