From 21758a8c85973296c7d3db0bdfe235104cf00537 Mon Sep 17 00:00:00 2001 From: Adam <893184+NotAdam@users.noreply.github.com> Date: Sat, 26 Dec 2020 10:30:05 +1100 Subject: [PATCH] fix modpacks greater than 2147483647 bytes failing to load --- Penumbra/Importer/Models/SimpleModPack.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Penumbra/Importer/Models/SimpleModPack.cs b/Penumbra/Importer/Models/SimpleModPack.cs index e0a084e8..332e18c0 100644 --- a/Penumbra/Importer/Models/SimpleModPack.cs +++ b/Penumbra/Importer/Models/SimpleModPack.cs @@ -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; } }