abs adresses fix

This commit is contained in:
Jindra Petřík
2016-11-28 05:45:43 +01:00
parent 398d12d9e9
commit 74b7273da6

View File

@@ -194,9 +194,9 @@ public class IggyFont extends IggyTag {
start_of_char_struct = s.readUI64();
long abs_start_of_char_struct = makeAbsOffset(s, start_of_char_struct);
start_of_char_index = s.readUI64();
long abs_start_of_char_index = makeAbsOffset(s, start_of_char_struct);
long abs_start_of_char_index = makeAbsOffset(s, start_of_char_index);
start_of_scale = s.readUI64();
long abs_start_of_scale = makeAbsOffset(s, start_of_char_struct);
long abs_start_of_scale = makeAbsOffset(s, start_of_scale);
kern_count = s.readUI32();
unk_float = new float[5];