Name the files that cause crashes.

This commit is contained in:
Matthias Mailänder
2020-08-15 15:51:57 +02:00
committed by Paul Chote
parent e90fc1ef39
commit 9d181e88d2
2 changed files with 4 additions and 3 deletions

View File

@@ -216,9 +216,10 @@ namespace OpenRA.Mods.Cnc.Graphics
HvaReader hva;
using (var s = fileSystem.Open(files.Vxl + ".vxl"))
vxl = new VxlReader(s);
using (var s = fileSystem.Open(files.Hva + ".hva"))
hva = new HvaReader(s, files.Hva + ".hva");
return new Voxel(this, vxl, hva);
return new Voxel(this, vxl, hva, files);
}
public Voxel Load(string vxl, string hva)