fix modpacks greater than 2147483647 bytes failing to load

This commit is contained in:
Adam 2020-12-26 10:30:05 +11:00
parent 7471e1acaf
commit 21758a8c85

View file

@ -17,8 +17,8 @@ namespace Penumbra.Importer.Models
public string Name { get; set; }
public string Category { get; set; }
public string FullPath { get; set; }
public int ModOffset { get; set; }
public int ModSize { get; set; }
public long ModOffset { get; set; }
public long ModSize { get; set; }
public string DatFile { get; set; }
public object ModPackEntry { get; set; }
}