1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-09-19 21:44:14 +01:00
Ryujinx/Ryujinx.Cpu/LoadState.cs
gdkchan fc4b7cba2c
Make PPTC state non-static (#4157)
* 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
}
}