mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-19 12:42:54 +00:00
Enable this settings screen via a boolean in Config.json First one is the xb2 menu softlock fix
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
|
|
}
|
|
}
|