(BPE): fixed.

This commit is contained in:
morkt
2017-12-13 13:33:10 +04:00
parent 34ec98728d
commit ea8cd8a420

View File

@@ -25,6 +25,7 @@
using System.ComponentModel.Composition; using System.ComponentModel.Composition;
using System.IO; using System.IO;
using GameRes.Utility;
namespace GameRes.Formats.QSoft namespace GameRes.Formats.QSoft
{ {
@@ -95,7 +96,7 @@ namespace GameRes.Formats.QSoft
break; break;
ctl = input.ReadByte() & 0xFF; ctl = input.ReadByte() & 0xFF;
} }
int chunk_size = Binary.BigEndian (input.ReadUInt16()) int chunk_size = Binary.BigEndian (input.ReadUInt16());
int x = 0; int x = 0;
for (;;) for (;;)
{ {