mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-18 19:22:37 +00:00
abs adresses fix
This commit is contained in:
@@ -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];
|
||||
|
||||
Reference in New Issue
Block a user