diff options
| author | 2021-07-26 04:16:32 -0400 | |
|---|---|---|
| committer | 2021-07-26 04:16:34 -0400 | |
| commit | 0b67df1f7c09696e928a357f1b8e22a198cfa3b4 (patch) | |
| tree | d60ade95519cc8d09309343e02c6512e67b048c8 /src/shader_recompiler | |
| parent | Merge pull request #6575 from FernandoS27/new_settings (diff) | |
| download | yuzu-0b67df1f7c09696e928a357f1b8e22a198cfa3b4.tar.gz yuzu-0b67df1f7c09696e928a357f1b8e22a198cfa3b4.tar.xz yuzu-0b67df1f7c09696e928a357f1b8e22a198cfa3b4.zip | |
control_flow: Fix duplicate switch case in OpcodeToken
This previously duplicated the case of the PBK case above it.
Diffstat (limited to 'src/shader_recompiler')
| -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 1a954a509..efe457baa 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) { | |||
| 73 | return Token::PBK; | 73 | return Token::PBK; |
| 74 | case Opcode::PCNT: | 74 | case Opcode::PCNT: |
| 75 | case Opcode::CONT: | 75 | case Opcode::CONT: |
| 76 | return Token::PBK; | 76 | return Token::PCNT; |
| 77 | case Opcode::PEXIT: | 77 | case Opcode::PEXIT: |
| 78 | case Opcode::EXIT: | 78 | case Opcode::EXIT: |
| 79 | return Token::PEXIT; | 79 | return Token::PEXIT; |