mirror of
https://github.com/revanced/smali.git
synced 2025-05-04 08:34:25 +02:00
Fixed the unsigned byte format, so that it includes the training 't'
git-svn-id: https://smali.googlecode.com/svn/trunk@196 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
parent
103dd1612d
commit
8ff7f345ae
@ -42,7 +42,7 @@ public class ByteRenderer implements AttributeRenderer {
|
||||
public String toString(Object o, String s) {
|
||||
if (s.equals("unsigned")) {
|
||||
Byte b = (Byte)o;
|
||||
return "0x" + Integer.toHexString(b & 0xFF);
|
||||
return "0x" + Integer.toHexString(b & 0xFF) + "t";
|
||||
}
|
||||
return toString(o);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user