mirror of
https://github.com/revanced/ARSCLib.git
synced 2025-05-09 10:14:25 +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){
|
||||
continue;
|
||||
}
|
||||
i=i|vt.mByte;
|
||||
i=i|(0xff & vt.mByte);
|
||||
}
|
||||
return (byte) i;
|
||||
return (byte) (0xff & i);
|
||||
}
|
||||
public static AttributeValueType valueOf(byte b){
|
||||
AttributeValueType[] all=values();
|
||||
|
Loading…
x
Reference in New Issue
Block a user