mirror of
https://github.com/revanced/smali.git
synced 2025-06-12 20:27:36 +02:00
Fix the payload opcode values in Opcode.getOpcodeByValue
This commit is contained in:
@ -337,9 +337,9 @@ public enum Opcode
|
||||
public static Opcode getOpcodeByValue(int opcodeValue) {
|
||||
switch (opcodeValue) {
|
||||
case 0x100:
|
||||
return SPARSE_SWITCH_PAYLOAD;
|
||||
case 0x200:
|
||||
return PACKED_SWITCH_PAYLOAD;
|
||||
case 0x200:
|
||||
return SPARSE_SWITCH_PAYLOAD;
|
||||
case 0x300:
|
||||
return ARRAY_PAYLOAD;
|
||||
default:
|
||||
|
Reference in New Issue
Block a user