mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 18:27:24 +01:00
fix modpacks greater than 2147483647 bytes failing to load
This commit is contained in:
parent
7471e1acaf
commit
21758a8c85
1 changed files with 2 additions and 2 deletions
|
|
@ -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; }
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue