mirror of
https://github.com/kwsch/pkNX.git
synced 2026-09-09 11:05:35 -05:00
Minor tweaks
Cleaning things up before things go dark?
This commit is contained in:
@@ -20,8 +20,8 @@ public EvolutionSet7(ReadOnlySpan<byte> data)
|
||||
|
||||
public override byte[] Write()
|
||||
{
|
||||
using MemoryStream ms = new();
|
||||
using BinaryWriter bw = new(ms);
|
||||
using var ms = new MemoryStream();
|
||||
using var bw = new BinaryWriter(ms);
|
||||
foreach (EvolutionMethod evo in PossibleEvolutions)
|
||||
{
|
||||
bw.Write((ushort)evo.Method);
|
||||
|
||||
Reference in New Issue
Block a user