DTXManiaXG(Ver.K)4.00Series
修訂 | db949bee97c932c8f5ef59cdf6a4344ed9e04f90 (tree) |
---|---|
時間 | 2020-10-02 21:53:38 |
作者 | ![]() |
Commiter | kairera0467 |
4.10b
#xxxxx XGスコア方式でリザルト画面のランク表示がSランク以上しか表示されない不具合の修正
#xxxxx bassasio.dllの更新漏れ
#xxxxx アセンブリバージョンの更新
@@ -33,8 +33,8 @@ using System.Resources; | ||
33 | 33 | // すべての値を指定するか、下のように '*' を使ってビルドおよびリビジョン番号を |
34 | 34 | // 既定値にすることができます: |
35 | 35 | // [assembly: AssemblyVersion("1.0.*")] |
36 | -[assembly: AssemblyVersion( "4.1.0.1" )] | |
37 | -[assembly: AssemblyFileVersion( "4.1.0.1" )] | |
36 | +[assembly: AssemblyVersion( "4.1.0.2" )] | |
37 | +[assembly: AssemblyFileVersion( "4.1.0.2" )] | |
38 | 38 | [assembly: NeutralResourcesLanguageAttribute("ja-JP")] |
39 | 39 | |
40 | 40 | // このアセンブリは「ライブラリ」である(難読化ツールへの指示)。 |
@@ -1479,15 +1479,15 @@ namespace DTXMania | ||
1479 | 1479 | #region[ ランク ] |
1480 | 1480 | if ( retGame >= 95.0 ) { |
1481 | 1481 | nRank = (int)ERANK.SS; |
1482 | - } else if( retGame >= 0.80 ) { | |
1482 | + } else if( retGame >= 80.0 ) { | |
1483 | 1483 | nRank = (int)ERANK.S; |
1484 | - } else if( retGame >= 0.73 ) { | |
1484 | + } else if( retGame >= 73.0 ) { | |
1485 | 1485 | nRank = (int)ERANK.A; |
1486 | - } else if( retGame >= 0.63 ) { | |
1486 | + } else if( retGame >= 63.0 ) { | |
1487 | 1487 | nRank = (int)ERANK.B; |
1488 | - } else if( retGame >= 0.53 ) { | |
1488 | + } else if( retGame >= 53.0 ) { | |
1489 | 1489 | nRank = (int)ERANK.C; |
1490 | - } else if( retGame >= 0.45 ) { | |
1490 | + } else if( retGame >= 45.0 ) { | |
1491 | 1491 | nRank = (int)ERANK.D; |
1492 | 1492 | } else { |
1493 | 1493 | nRank = (int)ERANK.E; |
@@ -231,7 +231,7 @@ namespace DTXMania | ||
231 | 231 | } |
232 | 232 | #endregion |
233 | 233 | #region[ バージョン表示 ] |
234 | - string strVersion = "DTX:J:A:A:2019090100"; | |
234 | + string strVersion = "DTX:J:A:A:2020100200"; | |
235 | 235 | #if DEBUG |
236 | 236 | strVersion += " DEBUG"; |
237 | 237 | #endif |
@@ -23,7 +23,7 @@ namespace DTXMania | ||
23 | 23 | { |
24 | 24 | // プロパティ |
25 | 25 | #region [ properties ] |
26 | - public static readonly string VERSION = "Ver4.10a(200922)"; | |
26 | + public static readonly string VERSION = "Ver4.10b(201002)"; | |
27 | 27 | public static readonly string SLIMDXDLL = "c_net20x86_Jun2010"; |
28 | 28 | public static readonly string D3DXDLL = "d3dx9_43.dll"; // June 2010 |
29 | 29 | //public static readonly string D3DXDLL = "d3dx9_42.dll"; // February 2010 |