From 8cd89eae041635607da9786dd70c599f5742f03a Mon Sep 17 00:00:00 2001 From: yyagi Date: Thu, 9 Jan 2020 00:08:19 +0900 Subject: [PATCH] #39825 Fixed to work B6 and B7 correctly. (no-chip default sound FloorTom and RightCymbal were mixed up) --- DTXMania/コード/ステージ/07.演奏/TypesForPlayStage.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/DTXMania/コード/ステージ/07.演奏/TypesForPlayStage.cs b/DTXMania/コード/ステージ/07.演奏/TypesForPlayStage.cs index 59834567..d791928f 100644 --- a/DTXMania/コード/ステージ/07.演奏/TypesForPlayStage.cs +++ b/DTXMania/コード/ステージ/07.演奏/TypesForPlayStage.cs @@ -115,10 +115,10 @@ namespace DTXMania return this.LT; case 5: - return this.FT; + return this.CY; case 6: - return this.CY; + return this.FT; case 7: return this.HHO; @@ -156,11 +156,11 @@ namespace DTXMania return; case 5: - this.FT = value; + this.CY = value; return; case 6: - this.CY = value; + this.FT = value; return; case 7: -- 2.11.0