• R/O
  • HTTP
  • SSH
  • HTTPS

提交

標籤
無標籤

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

DTXManiaXG(Ver.K)4.00Series


Commit MetaInfo

修訂e8b0e100db97eca5d5bc6b1c5e826e539be26bed (tree)
時間2019-07-27 19:15:30
作者kairera0467 <gennsou76573@gmai...>
Commiterkairera0467

Log Message

作業部屋#50805 matixx選曲画面でBPMに少数点以下が存在すると表示がおかしくなる不具合を修正
#xxxxx matixx選曲画面でフォルダから抜けた時にアーティスト名画像がそのまま残る不具合を修正

Change Summary

  • delete: "DTXMania\343\203\227\343\203\255\343\202\270\343\202\247\343\202\257\343\203\210/\343\202\263\343\203\274\343\203\211/\343\202\271\343\203\206\343\203\274\343\202\270/05.\351\201\270\346\233\262/GITADORA/CActSelect\343\202\271\343\203\206\343\203\274\343\202\277\343\202\271\343\203\221\343\203\215\343\203\253GITADORA.cs"
  • delete: "DTXMania\343\203\227\343\203\255\343\202\270\343\202\247\343\202\257\343\203\210/\343\202\263\343\203\274\343\203\211/\343\202\271\343\203\206\343\203\274\343\202\270/05.\351\201\270\346\233\262/GITADORA/CActSelect\346\233\262\343\203\252\343\202\271\343\203\210GITADORA.cs"
  • delete: "\345\256\237\350\241\214\346\231\202\343\203\225\343\202\251\343\203\253\343\203\200/DTXManiaGR.exe"

差異

--- "a/DTXMania\343\203\227\343\203\255\343\202\270\343\202\247\343\202\257\343\203\210/\343\202\263\343\203\274\343\203\211/\343\202\271\343\203\206\343\203\274\343\202\270/05.\351\201\270\346\233\262/GITADORA/CActSelect\343\202\271\343\203\206\343\203\274\343\202\277\343\202\271\343\203\221\343\203\215\343\203\253GITADORA.cs"
+++ "b/DTXMania\343\203\227\343\203\255\343\202\270\343\202\247\343\202\257\343\203\210/\343\202\263\343\203\274\343\203\211/\343\202\271\343\203\206\343\203\274\343\202\270/05.\351\201\270\346\233\262/GITADORA/CActSelect\343\202\271\343\203\206\343\203\274\343\202\277\343\202\271\343\203\221\343\203\215\343\203\253GITADORA.cs"
@@ -607,13 +607,13 @@ namespace DTXMania
607607
608608 // 1文字あたりのマージン
609609 int n文字間隔 = 18;
610- string formatText = string.Format( "{0,4:###0}", dbBPM最小.ToString() );
610+ string formatText = string.Format( "{0,4:###0}", ((int)dbBPM最小).ToString() );
611611 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() );
613613 x += 34;
614614 }
615615 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() );
617617
618618 for( int i = 0; i < formatText.Length; i++ )
619619 {
--- "a/DTXMania\343\203\227\343\203\255\343\202\270\343\202\247\343\202\257\343\203\210/\343\202\263\343\203\274\343\203\211/\343\202\271\343\203\206\343\203\274\343\202\270/05.\351\201\270\346\233\262/GITADORA/CActSelect\346\233\262\343\203\252\343\202\271\343\203\210GITADORA.cs"
+++ "b/DTXMania\343\203\227\343\203\255\343\202\270\343\202\247\343\202\257\343\203\210/\343\202\263\343\203\274\343\203\211/\343\202\271\343\203\206\343\203\274\343\202\270/05.\351\201\270\346\233\262/GITADORA/CActSelect\346\233\262\343\203\252\343\202\271\343\203\210GITADORA.cs"
@@ -90,6 +90,7 @@ namespace DTXMania
9090 }
9191 }
9292 }
93+ this.tx選択中のアーティスト名テクスチャ?.Dispose(); // 2019.07.27 作業部屋#50808 kairera0467
9394 }
9495
9596 public override void On活性化()
Binary files "a/\345\256\237\350\241\214\346\231\202\343\203\225\343\202\251\343\203\253\343\203\200/DTXManiaGR.exe" and "b/\345\256\237\350\241\214\346\231\202\343\203\225\343\202\251\343\203\253\343\203\200/DTXManiaGR.exe" differ