mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-11-15 14:10:05 +00:00
control_flow: Fix duplicate switch case in OpcodeToken
This previously duplicated the case of the PBK case above it.
This commit is contained in:
parent
7e272d3cd8
commit
0b67df1f7c
@ -73,7 +73,7 @@ Token OpcodeToken(Opcode opcode) {
|
|||||||
return Token::PBK;
|
return Token::PBK;
|
||||||
case Opcode::PCNT:
|
case Opcode::PCNT:
|
||||||
case Opcode::CONT:
|
case Opcode::CONT:
|
||||||
return Token::PBK;
|
return Token::PCNT;
|
||||||
case Opcode::PEXIT:
|
case Opcode::PEXIT:
|
||||||
case Opcode::EXIT:
|
case Opcode::EXIT:
|
||||||
return Token::PEXIT;
|
return Token::PEXIT;
|
||||||
|
Loading…
Reference in New Issue
Block a user