OSDN Git Service

DTXMania を DTXV モードで起動すると null 参照例外が発生するミスを修正。
authorくまかみ工房 <kumakamikoubou@gmail.com>
Sat, 6 May 2017 11:26:54 +0000 (20:26 +0900)
committerくまかみ工房 <kumakamikoubou@gmail.com>
Sat, 6 May 2017 11:26:54 +0000 (20:26 +0900)
CConfigIni.bAutoPlay[ EPad.Capture ] が逆シリアル化前に初期化されておらず、ConfigIni.xml には「<Capture i:nil="true"/>」(null参照)として保存されていたため、これを初期化するようにした。

DTXManiaプロジェクト/コード/ステージ/04.コンフィグ/CConfigXml.cs
実行時フォルダ/DTXCreator.exe
実行時フォルダ/DTXManiaGR.exe
実行時フォルダ/ja-JP/DTXCreator.resources.dll
実行時フォルダ/ja-JP/DTXManiaGR.resources.dll

index 12709fd..afca0a8 100644 (file)
@@ -485,6 +485,7 @@ namespace DTXMania
                        {\r
                                bAutoPlay[ pad ] = new COptionBool( true );\r
                        }\r
+                       bAutoPlay[ EPad.Capture ] = new COptionBool( true );\r
                        bViewerVSyncWait = new COptionBool( true );\r
                        bViewerShowDebugStatus = new COptionBool(true);\r
                        bViewerTimeStretch = new COptionBool(false);\r
@@ -756,6 +757,7 @@ namespace DTXMania
                        bAutoPlay.BsB.Initialize( "strCfgBsAutoB" );\r
                        bAutoPlay.BsPick.Initialize( "strCfgBsAutoPick" );\r
                        bAutoPlay.BsWail.Initialize( "strCfgBsAutoWailing" );\r
+                       bAutoPlay.Capture.Initialize( "strCfgCapture" );\r
 \r
                        bLoadSoundSpeed.Initialize( "strCfgSysSoundLoadLimiter" );\r
                        bIsAutoResultCapture.Initialize( "strCfgSysAutoResultCapture" );\r
index e08da91..66f910b 100644 (file)
Binary files a/実行時フォルダ/DTXCreator.exe and b/実行時フォルダ/DTXCreator.exe differ
index 60e57ca..6cf7817 100644 (file)
Binary files a/実行時フォルダ/DTXManiaGR.exe and b/実行時フォルダ/DTXManiaGR.exe differ
index c53af57..bfc592d 100644 (file)
Binary files a/実行時フォルダ/ja-JP/DTXCreator.resources.dll and b/実行時フォルダ/ja-JP/DTXCreator.resources.dll differ
index 44cb7f1..f3388df 100644 (file)
Binary files a/実行時フォルダ/ja-JP/DTXManiaGR.resources.dll and b/実行時フォルダ/ja-JP/DTXManiaGR.resources.dll differ