1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-03-21 12:05:45 -05:00
gdkchan fc4b7cba2c
Make PPTC state non-static ()
* Make PPTC state non-static

* DiskCacheLoadState can be null
2023-01-05 00:01:44 +01:00

12 lines
170 B
C#

namespace Ryujinx.Cpu
{
/// <summary>
/// Load state.
/// </summary>
public enum LoadState
{
Unloaded,
Loading,
Loaded
}
}