Pso Pointer fix

This commit is contained in:
dexyfex
2017-10-02 03:36:20 +11:00
Unverified
parent dd9c6e4bfd
commit f673abb1db
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -620,7 +620,7 @@ namespace CodeWalker.GameFiles
public uint Unk2 { get; set; }
public ushort BlockID { get { return (ushort)(Pointer & 0xFFF); } } //1-based ID
public uint ItemOffset { get { return (ushort)((Pointer>>12) & 0xFFFFF); } } //byte offset
public uint ItemOffset { get { return ((Pointer>>12) & 0xFFFFF); } } //byte offset
public override string ToString()