FxcFile Save method and loading improvements

This commit is contained in:
dexy
2022-05-20 12:11:25 +10:00
Unverified
parent 9904e92082
commit a2f34ddf05
3 changed files with 652 additions and 447 deletions
+1 -8
View File
@@ -79,14 +79,7 @@ namespace CodeWalker.Forms
}
if (!string.IsNullOrEmpty(fxc.LastError))
{
StatusLabel.Text = fxc.LastError;
}
else
{
StatusLabel.Text = (fxc.Shaders?.Length??0).ToString() + " shaders, " + (fxc.Techniques?.Length??0).ToString() + " techniques";
}
StatusLabel.Text = (fxc.Shaders?.Length??0).ToString() + " shaders, " + (fxc.Techniques?.Length??0).ToString() + " techniques";
}