mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 18:27:24 +01:00
Fix Resource Watcher crash
This commit is contained in:
parent
113078af90
commit
d4738934f8
2 changed files with 27 additions and 25 deletions
|
|
@ -107,6 +107,7 @@ internal unsafe struct Record
|
|||
Synchronously = OptionalBool.Null,
|
||||
ReturnValue = OptionalBool.Null,
|
||||
CustomLoad = OptionalBool.Null,
|
||||
AssociatedGameObject = string.Empty,
|
||||
};
|
||||
}
|
||||
|
||||
|
|
@ -125,5 +126,6 @@ internal unsafe struct Record
|
|||
Synchronously = OptionalBool.Null,
|
||||
ReturnValue = ret,
|
||||
CustomLoad = custom,
|
||||
AssociatedGameObject = string.Empty,
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ using Penumbra.UI.Classes;
|
|||
|
||||
namespace Penumbra.UI;
|
||||
|
||||
public partial class ResourceWatcher : IDisposable, ITab
|
||||
public class ResourceWatcher : IDisposable, ITab
|
||||
{
|
||||
public const int DefaultMaxEntries = 1024;
|
||||
public const RecordType AllRecords = RecordType.Request | RecordType.ResourceLoad | RecordType.FileLoad | RecordType.Destruction;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue