mirror of
https://github.com/revanced/ARSCLib.git
synced 2025-05-09 18:24:26 +02:00
fix: unsigned byte attribute type conversion #11
This commit is contained in:
parent
b55904f564
commit
1c53bd295c
@ -74,9 +74,9 @@ import java.util.*;
|
|||||||
if(vt==null){
|
if(vt==null){
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
i=i|vt.mByte;
|
i=i|(0xff & vt.mByte);
|
||||||
}
|
}
|
||||||
return (byte) i;
|
return (byte) (0xff & i);
|
||||||
}
|
}
|
||||||
public static AttributeValueType valueOf(byte b){
|
public static AttributeValueType valueOf(byte b){
|
||||||
AttributeValueType[] all=values();
|
AttributeValueType[] all=values();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user