0
0
Fork 0
mirror of https://github.com/GreemDev/Ryujinx.git synced 2025-01-10 15:12:00 +00:00
Ryujinx/src/Ryujinx.Common/Configuration/DirtyHacks.cs

12 lines
167 B
C#
Raw Normal View History

using System;
namespace Ryujinx.Common.Configuration
{
[Flags]
public enum DirtyHacks
{
None = 0,
Xc2MenuSoftlockFix = 1 << 10
}
}