this function was used in only one DataFormat. ever. and it never worked...
This commit is contained in:
parent
a4cfd05827
commit
52c8c050f3
@ -1118,7 +1118,8 @@ namespace UniversalEditor.IO
|
||||
public string[] ReadNullTerminatedStringArray(int stringTableSize)
|
||||
{
|
||||
System.Collections.Generic.List<string> list = new System.Collections.Generic.List<string>();
|
||||
while (base.Accessor.Remaining < stringTableSize)
|
||||
long endpos = base.Accessor.Position + stringTableSize;
|
||||
while (base.Accessor.Position < endpos)
|
||||
{
|
||||
list.Add(ReadNullTerminatedString());
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user