diff options
author | Lioncash <mathew1800@gmail.com> | 2021-07-26 10:16:32 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2021-07-26 10:16:34 +0200 |
commit | 0b67df1f7c09696e928a357f1b8e22a198cfa3b4 (patch) | |
tree | d60ade95519cc8d09309343e02c6512e67b048c8 /src | |
parent | Merge pull request #6575 from FernandoS27/new_settings (diff) | |
download | yuzu-0b67df1f7c09696e928a357f1b8e22a198cfa3b4.tar yuzu-0b67df1f7c09696e928a357f1b8e22a198cfa3b4.tar.gz yuzu-0b67df1f7c09696e928a357f1b8e22a198cfa3b4.tar.bz2 yuzu-0b67df1f7c09696e928a357f1b8e22a198cfa3b4.tar.lz yuzu-0b67df1f7c09696e928a357f1b8e22a198cfa3b4.tar.xz yuzu-0b67df1f7c09696e928a357f1b8e22a198cfa3b4.tar.zst yuzu-0b67df1f7c09696e928a357f1b8e22a198cfa3b4.zip |
Diffstat (limited to '')
-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) { return Token::PBK; case Opcode::PCNT: case Opcode::CONT: - return Token::PBK; + return Token::PCNT; case Opcode::PEXIT: case Opcode::EXIT: return Token::PEXIT; |