Browse Source

Force value bytes before filename table

master
BahaBulle 8 years ago
parent
commit
13a4ee9d18
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      Hack.Xenosaga/Process/Scripts.cs

+ 2
- 1
Hack.Xenosaga/Process/Scripts.cs View File

@ -346,7 +346,8 @@ namespace Hack.Xenosaga.Process
long posName = destEvt.Position;
// Write filename table
msName.Write(BitConverter.GetBytes(msName.Length-2), 0, 2, 0);
msName.Write(BitConverter.GetBytes(0x2E), 0, 2, 0);
//msName.Write(BitConverter.GetBytes(msName.Length-2), 0, 2, 0);
msName.Position = 0;
destEvt.Write(BitConverter.GetBytes(posName), 0, 4, 12);


Loading…
Cancel
Save