DTXManiaXG(Ver.K)4.00Series
修訂 | e8b0e100db97eca5d5bc6b1c5e826e539be26bed (tree) |
---|---|
時間 | 2019-07-27 19:15:30 |
作者 | ![]() |
Commiter | kairera0467 |
作業部屋#50805 matixx選曲画面でBPMに少数点以下が存在すると表示がおかしくなる不具合を修正
#xxxxx matixx選曲画面でフォルダから抜けた時にアーティスト名画像がそのまま残る不具合を修正
@@ -607,13 +607,13 @@ namespace DTXMania | ||
607 | 607 | |
608 | 608 | // 1文字あたりのマージン |
609 | 609 | int n文字間隔 = 18; |
610 | - string formatText = string.Format( "{0,4:###0}", dbBPM最小.ToString() ); | |
610 | + string formatText = string.Format( "{0,4:###0}", ((int)dbBPM最小).ToString() ); | |
611 | 611 | if( ( dbBPM最小 != -1 && dbBPM最大 != -1 ) && ( dbBPM最小 == dbBPM最大 ) ) { |
612 | - formatText = string.Format( "{0,4:###0}", dbBPM最大.ToString() ); | |
612 | + formatText = string.Format( "{0,4:###0}", ((int)dbBPM最大).ToString() ); | |
613 | 613 | x += 34; |
614 | 614 | } |
615 | 615 | else if( dbBPM最小 != -1 && dbBPM最大 != -1 ) |
616 | - formatText = string.Format( "{0,4:###0}" + "~" + "{1,4:###0}", dbBPM最小.ToString(), dbBPM最大.ToString() ); | |
616 | + formatText = string.Format( "{0,4:###0}" + "~" + "{1,4:###0}", ((int)dbBPM最小).ToString(), ((int)dbBPM最大).ToString() ); | |
617 | 617 | |
618 | 618 | for( int i = 0; i < formatText.Length; i++ ) |
619 | 619 | { |
@@ -90,6 +90,7 @@ namespace DTXMania | ||
90 | 90 | } |
91 | 91 | } |
92 | 92 | } |
93 | + this.tx選択中のアーティスト名テクスチャ?.Dispose(); // 2019.07.27 作業部屋#50808 kairera0467 | |
93 | 94 | } |
94 | 95 | |
95 | 96 | public override void On活性化() |