mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 18:17:21 +01:00
add lod warning on connection when lod is enabled
This commit is contained in:
parent
aa8d34ff46
commit
831a3dd1ee
4 changed files with 27 additions and 6 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue