Skip to content

Commit

Permalink
TAG012
Browse files Browse the repository at this point in the history
バッファの書き出しミスを修正
  • Loading branch information
kumatan committed May 3, 2020
1 parent 01e5777 commit 76acdd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PMDDotNETConsole/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ static void Compile(string[] args,int argIndex)
if (isSuccess)
{
bufferedDestStream.Flush();
byte[] destbuf = destCompiledBin.GetBuffer();
byte[] destbuf = destCompiledBin.ToArray();
File.WriteAllBytes(destFileName, destbuf);
}
}
Expand Down

0 comments on commit 76acdd0

Please sign in to comment.