mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-12 21:46:28 +02:00
misc: Dirty Hacks
Enable this settings screen via a boolean in Config.json First one is the xb2 menu softlock fix
This commit is contained in:
parent
09107b67ff
commit
8b3a945b5f
21 changed files with 222 additions and 22 deletions
11
src/Ryujinx.Common/Configuration/DirtyHacks.cs
Normal file
11
src/Ryujinx.Common/Configuration/DirtyHacks.cs
Normal file
|
@ -0,0 +1,11 @@
|
|||
using System;
|
||||
|
||||
namespace Ryujinx.Common.Configuration
|
||||
{
|
||||
[Flags]
|
||||
public enum DirtyHacks
|
||||
{
|
||||
None = 0,
|
||||
Xc2MenuSoftlockFix = 1 << 10
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue