From c528dfba1e2adee25966bac62b917b129f789427 Mon Sep 17 00:00:00 2001 From: MikiraSora Date: Fri, 20 Sep 2024 07:41:01 +0800 Subject: [PATCH] fix --- .../Graphics/Drawing/Editors/DrawPlayableAreaHelper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OngekiFumenEditor/Modules/FumenVisualEditor/Graphics/Drawing/Editors/DrawPlayableAreaHelper.cs b/OngekiFumenEditor/Modules/FumenVisualEditor/Graphics/Drawing/Editors/DrawPlayableAreaHelper.cs index 7eeb7bf4..03eb4e1c 100644 --- a/OngekiFumenEditor/Modules/FumenVisualEditor/Graphics/Drawing/Editors/DrawPlayableAreaHelper.cs +++ b/OngekiFumenEditor/Modules/FumenVisualEditor/Graphics/Drawing/Editors/DrawPlayableAreaHelper.cs @@ -386,7 +386,7 @@ void FillPoints(List ps, bool isRight) FillPoints(rightPoints, true); //todo 解决左右墙交叉处理问题 - var r = string.Join(Environment.NewLine, points.SequenceWrap(2).Select(x => $"{x.FirstOrDefault(),-20}{x.LastOrDefault()}")); + var pointPrint = string.Join(Environment.NewLine, points.SequenceWrap(2).Select(x => $"{x.FirstOrDefault(),-20}{x.LastOrDefault()}")); var tessellateList = ObjectPool>.Get(); tessellateList.Clear();