1
0
mirror of synced 2025-01-19 01:14:08 +01:00

Adjust saving strings for ME01

This commit is contained in:
KillzXGaming 2019-06-30 21:06:22 -04:00
parent d99638e6ec
commit 79950eee16
6 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -125,7 +125,7 @@ namespace FirstPlugin
//Fixed 128 string length
if (i != files.Count - 1)
{
int PaddingCount = 128 - files[i].FileName.Length;
int PaddingCount = 128 - files[i].FileName.Length - 1;
for (int p = 0; p < PaddingCount; p++)
writer.Write((byte)0x30);
}