diff options
author | Lioncash <mathew1800@gmail.com> | 2021-07-26 04:16:32 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2021-07-26 04:16:34 -0400 |
commit | 0b67df1f7c09696e928a357f1b8e22a198cfa3b4 (patch) | |
tree | d60ade95519cc8d09309343e02c6512e67b048c8 | |
parent | 7e272d3cd81656b65b21f5a569fc9a2d76cac758 (diff) |
control_flow: Fix duplicate switch case in OpcodeToken
This previously duplicated the case of the PBK case above it.
-rw-r--r-- | src/shader_recompiler/frontend/maxwell/control_flow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/control_flow.cpp b/src/shader_recompiler/frontend/maxwell/control_flow.cpp index 1a954a509f..efe457baa3 100644 --- a/src/shader_recompiler/frontend/maxwell/control_flow.cpp +++ b/src/shader_recompiler/frontend/maxwell/control_flow.cpp @@ -73,7 +73,7 @@ Token OpcodeToken(Opcode opcode) { return Token::PBK; case Opcode::PCNT: case Opcode::CONT: - return Token::PBK; + return Token::PCNT; case Opcode::PEXIT: case Opcode::EXIT: return Token::PEXIT; |