mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 06:13:40 +01:00
Make ImU8String not IDisposable
This commit is contained in:
parent
5fee90085c
commit
afe58dae76
15 changed files with 267 additions and 267 deletions
|
|
@ -274,8 +274,8 @@ public static unsafe partial class ImGui
|
|||
stepFast > T.Zero ? stepFastPtr : null,
|
||||
formatPtr,
|
||||
flags) != 0;
|
||||
label.Dispose();
|
||||
format.Dispose();
|
||||
label.Recycle();
|
||||
format.Recycle();
|
||||
return res;
|
||||
}
|
||||
}
|
||||
|
|
@ -302,8 +302,8 @@ public static unsafe partial class ImGui
|
|||
stepFast > T.Zero ? stepFastPtr : null,
|
||||
formatPtr,
|
||||
flags) != 0;
|
||||
label.Dispose();
|
||||
format.Dispose();
|
||||
label.Recycle();
|
||||
format.Recycle();
|
||||
return res;
|
||||
}
|
||||
}
|
||||
|
|
@ -329,8 +329,8 @@ public static unsafe partial class ImGui
|
|||
stepFast > T.Zero ? stepFastPtr : null,
|
||||
formatPtr,
|
||||
flags) != 0;
|
||||
label.Dispose();
|
||||
format.Dispose();
|
||||
label.Recycle();
|
||||
format.Recycle();
|
||||
return res;
|
||||
}
|
||||
}
|
||||
|
|
@ -357,8 +357,8 @@ public static unsafe partial class ImGui
|
|||
stepFast > T.Zero ? stepFastPtr : null,
|
||||
formatPtr,
|
||||
flags) != 0;
|
||||
label.Dispose();
|
||||
format.Dispose();
|
||||
label.Recycle();
|
||||
format.Recycle();
|
||||
return res;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue