Browse Source
Merge pull request #6725 from lioncash/control-token
control_flow: Fix duplicate switch case in OpcodeToken
pull/15/merge
Rodrigo Locatti
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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; |
|
|
|
|