fixed
This commit is contained in:
parent
5f9d67b36f
commit
c77cac4812
@ -187,11 +187,13 @@ public class AxiNSIO
|
||||
{
|
||||
if (LoadSwitchDataFile(filename, out byte[] outputData))
|
||||
{
|
||||
System.IO.BinaryWriter writer = new System.IO.BinaryWriter(ms);
|
||||
writer.Write(outputData);
|
||||
return true;
|
||||
using (System.IO.BinaryWriter writer = new System.IO.BinaryWriter(ms))
|
||||
{
|
||||
writer.Write(outputData);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
return false;
|
||||
}
|
||||
public bool LoadSwitchDataFile(string filename, out byte[] outputData)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user