OSDN Git Service

4.10b
authorkairera0467 <gennsou76573@gmail.com>
Fri, 2 Oct 2020 12:53:38 +0000 (21:53 +0900)
committerkairera0467 <gennsou76573@gmail.com>
Fri, 2 Oct 2020 12:53:38 +0000 (21:53 +0900)
#xxxxx XGスコア方式でリザルト画面のランク表示がSランク以上しか表示されない不具合の修正
#xxxxx bassasio.dllの更新漏れ
#xxxxx アセンブリバージョンの更新

DTXManiaプロジェクト/Properties/AssemblyInfo.cs
DTXManiaプロジェクト/コード/スコア、曲/CScoreIni.cs
DTXManiaプロジェクト/コード/ステージ/02.タイトル/CStageタイトル.cs
DTXManiaプロジェクト/コード/全体/CDTXMania.cs
実行時フォルダ/DTXManiaGR.exe
実行時フォルダ/dll/FDK.dll
実行時フォルダ/dll/bassasio.dll
実行時フォルダ/dll/libbjxa.dll
実行時フォルダ/dll/x64/bassasio.dll

index fb65504..748592f 100644 (file)
@@ -33,8 +33,8 @@ using System.Resources;
 // すべての値を指定するか、下のように '*' を使ってビルドおよびリビジョン番号を 
 // 既定値にすることができます:
 // [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion( "4.1.0.1" )]
-[assembly: AssemblyFileVersion( "4.1.0.1" )]
+[assembly: AssemblyVersion( "4.1.0.2" )]
+[assembly: AssemblyFileVersion( "4.1.0.2" )]
 [assembly: NeutralResourcesLanguageAttribute("ja-JP")]
 
 // このアセンブリは「ライブラリ」である(難読化ツールへの指示)。
index 04e66fa..da33c56 100644 (file)
@@ -1479,15 +1479,15 @@ namespace DTXMania
             #region[ ランク ]
             if ( retGame >= 95.0 ) {
                 nRank = (int)ERANK.SS;
-            } else if( retGame >= 0.80 ) {
+            } else if( retGame >= 80.0 ) {
                 nRank = (int)ERANK.S;
-            } else if( retGame >= 0.73 ) {
+            } else if( retGame >= 73.0 ) {
                 nRank = (int)ERANK.A;
-            } else if( retGame >= 0.63 ) {
+            } else if( retGame >= 63.0 ) {
                 nRank = (int)ERANK.B;
-            } else if( retGame >= 0.53 ) {
+            } else if( retGame >= 53.0 ) {
                 nRank = (int)ERANK.C;
-            } else if( retGame >= 0.45 ) {
+            } else if( retGame >= 45.0 ) {
                 nRank = (int)ERANK.D;
             } else {
                 nRank = (int)ERANK.E;
index d60331b..835d26d 100644 (file)
@@ -231,7 +231,7 @@ namespace DTXMania
                                }
                                #endregion
                 #region[ バージョン表示 ]
-                string strVersion = "DTX:J:A:A:2019090100";
+                string strVersion = "DTX:J:A:A:2020100200";
 #if DEBUG
                 strVersion += "  DEBUG";
 #endif
index 4385d5d..34ecc44 100644 (file)
@@ -23,7 +23,7 @@ namespace DTXMania
        {
                // プロパティ
                #region [ properties ]
-               public static readonly string VERSION = "Ver4.10a(200922)";
+               public static readonly string VERSION = "Ver4.10b(201002)";
                public static readonly string SLIMDXDLL = "c_net20x86_Jun2010";
                public static readonly string D3DXDLL = "d3dx9_43.dll";         // June 2010
         //public static readonly string D3DXDLL = "d3dx9_42.dll";      // February 2010
index fcf9b6d..51dcda5 100644 (file)
Binary files a/実行時フォルダ/DTXManiaGR.exe and b/実行時フォルダ/DTXManiaGR.exe differ
index 98e7670..22c69de 100644 (file)
Binary files a/実行時フォルダ/dll/FDK.dll and b/実行時フォルダ/dll/FDK.dll differ
index 1edfec7..9e052cf 100644 (file)
Binary files a/実行時フォルダ/dll/bassasio.dll and b/実行時フォルダ/dll/bassasio.dll differ
index e8118df..bc1c9a1 100644 (file)
Binary files a/実行時フォルダ/dll/libbjxa.dll and b/実行時フォルダ/dll/libbjxa.dll differ
index 688ac99..2080bcf 100644 (file)
Binary files a/実行時フォルダ/dll/x64/bassasio.dll and b/実行時フォルダ/dll/x64/bassasio.dll differ