add comment "Tick 'Keep Itermediate Results'"

This commit is contained in:
ikpil 2024-04-16 23:24:48 +09:00
parent 17c1c18372
commit 97ffaf8700
1 changed files with 8 additions and 2 deletions

View File

@ -232,6 +232,12 @@ public class RcSettingsView : IRcView
DrawMode.Values.ForEach(dm => { ImGui.RadioButton(dm.Text, ref drawMode, dm.Idx); }); DrawMode.Values.ForEach(dm => { ImGui.RadioButton(dm.Text, ref drawMode, dm.Idx); });
ImGui.NewLine(); ImGui.NewLine();
ImGui.Separator();
ImGui.Text("Tick 'Keep Itermediate Results'");
ImGui.Text("rebuild some tiles to see");
ImGui.Text("more debug mode options.");
ImGui.NewLine();
ImGui.End(); ImGui.End();
} }