mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 10:17:22 +01:00
Fix imgui assert.
This commit is contained in:
parent
6cbc8bd58f
commit
b189ac027b
1 changed files with 2 additions and 1 deletions
|
|
@ -6,7 +6,8 @@ public static class DebugConfigurationDrawer
|
||||||
{
|
{
|
||||||
public static void Draw()
|
public static void Draw()
|
||||||
{
|
{
|
||||||
if (!ImUtf8.CollapsingHeaderId("Debug Logging Options"))
|
using var id = ImUtf8.CollapsingHeaderId("Debug Logging Options"u8);
|
||||||
|
if (!id)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
ImUtf8.Checkbox("Log IMC File Replacements"u8, ref DebugConfiguration.WriteImcBytesToLog);
|
ImUtf8.Checkbox("Log IMC File Replacements"u8, ref DebugConfiguration.WriteImcBytesToLog);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue