mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 18:27:24 +01:00
Add number of subfiles to debug tab.
This commit is contained in:
parent
24fda725a2
commit
853fe8644c
1 changed files with 5 additions and 1 deletions
|
|
@ -112,7 +112,7 @@ public partial class ConfigWindow
|
|||
PrintValue( "Web Server Enabled", ( _window._penumbra.WebServer != null ).ToString() );
|
||||
}
|
||||
|
||||
[Conditional("DEBUG")]
|
||||
[Conditional( "DEBUG" )]
|
||||
private static void DrawPerformanceTab()
|
||||
{
|
||||
ImGui.NewLine();
|
||||
|
|
@ -285,6 +285,10 @@ public partial class ConfigWindow
|
|||
ImGuiUtil.DrawTableColumn( _window._penumbra.PathResolver.CurrentAvfxData.ModCollection.Name );
|
||||
ImGuiUtil.DrawTableColumn( $"0x{_window._penumbra.PathResolver.CurrentAvfxData.AssociatedGameObject:X}" );
|
||||
|
||||
ImGuiUtil.DrawTableColumn( "Current Resources" );
|
||||
ImGuiUtil.DrawTableColumn( _window._penumbra.PathResolver.SubfileCount.ToString() );
|
||||
ImGui.TableNextColumn();
|
||||
|
||||
foreach( var (resource, resolve) in _window._penumbra.PathResolver.ResourceCollections )
|
||||
{
|
||||
ImGuiUtil.DrawTableColumn( $"0x{resource:X}" );
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue