mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-10 03:58:08 -05: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:
@ -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;
|
||||
|
Reference in New Issue
Block a user