From 7c3184d88ad7191c02aced9df68f87660dae4504 Mon Sep 17 00:00:00 2001 From: ww-rm Date: Thu, 1 May 2025 17:07:04 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=20Write=20=E8=BE=93=E5=85=A5?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SpineViewer/Spine/SkeletonConverter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SpineViewer/Spine/SkeletonConverter.cs b/SpineViewer/Spine/SkeletonConverter.cs index d0bf83c..41b7e52 100644 --- a/SpineViewer/Spine/SkeletonConverter.cs +++ b/SpineViewer/Spine/SkeletonConverter.cs @@ -209,7 +209,7 @@ namespace SpineViewer.Spine protected Stream output; public BinaryWriter(Stream output) { this.output = output; } - public void Write(int val) => output.WriteByte((byte)val); + public void Write(byte val) => output.WriteByte(val); public void WriteByte(byte val) => output.WriteByte(val); public void WriteUByte(byte val) => output.WriteByte(val); public void WriteSByte(sbyte val) => output.WriteByte((byte)val);