diff options
Diffstat (limited to 'Ryujinx.Graphics.Shader/Decoders/OpCodeBranchPop.cs')
-rw-r--r-- | Ryujinx.Graphics.Shader/Decoders/OpCodeBranchPop.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Shader/Decoders/OpCodeBranchPop.cs b/Ryujinx.Graphics.Shader/Decoders/OpCodeBranchPop.cs index 7ea66fe4..f6c3e4f4 100644 --- a/Ryujinx.Graphics.Shader/Decoders/OpCodeBranchPop.cs +++ b/Ryujinx.Graphics.Shader/Decoders/OpCodeBranchPop.cs @@ -7,6 +7,8 @@ namespace Ryujinx.Graphics.Shader.Decoders { public Dictionary<OpCodePush, int> Targets { get; } + public new static OpCode Create(InstEmitter emitter, ulong address, long opCode) => new OpCodeBranchPop(emitter, address, opCode); + public OpCodeBranchPop(InstEmitter emitter, ulong address, long opCode) : base(emitter, address, opCode) { Targets = new Dictionary<OpCodePush, int>(); |