12 lines
167 B
C#
12 lines
167 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace Ryujinx.Common.Configuration
|
|||
|
|
{
|
|||
|
|
[Flags]
|
|||
|
|
public enum DirtyHacks
|
|||
|
|
{
|
|||
|
|
None = 0,
|
|||
|
|
Xc2MenuSoftlockFix = 1 << 10
|
|||
|
|
}
|
|||
|
|
}
|