summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRodrigo Locatti <reinuseslisp@airmail.cc>2021-07-26 11:00:23 +0200
committerGitHub <noreply@github.com>2021-07-26 11:00:23 +0200
commit4afc2de1295e67f306c266442d12d1f6a6776ff7 (patch)
tree60aa928ede6320e84661a0204109b9dfd4ec3152
parentMerge pull request #6697 from ameerj/fps-cap (diff)
parentcontrol_flow: Fix duplicate switch case in OpcodeToken (diff)
downloadyuzu-4afc2de1295e67f306c266442d12d1f6a6776ff7.tar
yuzu-4afc2de1295e67f306c266442d12d1f6a6776ff7.tar.gz
yuzu-4afc2de1295e67f306c266442d12d1f6a6776ff7.tar.bz2
yuzu-4afc2de1295e67f306c266442d12d1f6a6776ff7.tar.lz
yuzu-4afc2de1295e67f306c266442d12d1f6a6776ff7.tar.xz
yuzu-4afc2de1295e67f306c266442d12d1f6a6776ff7.tar.zst
yuzu-4afc2de1295e67f306c266442d12d1f6a6776ff7.zip
-rw-r--r--src/shader_recompiler/frontend/maxwell/control_flow.cpp2
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;