
| Revision | bbd620b50a3edfa1d004a46956f1cbbb8816536e (tree) |
|---|---|
| Time | 2017-03-29 01:43:37 |
| Author | yyagi <yyagi.dtxmania@gmai...> |
| Commiter | yyagi |
#xxxxx score.iniの保存時に、Auto演奏フラグとしてCapture設定の情報を保存しようとしてNullRef例外が発生していたのを修正。
#xxxxx バージョン番号を変更。
| @@ -156,7 +156,7 @@ namespace DTXMania | ||
| 156 | 156 | Drums.nMiss数_Auto含まない = this.nヒット数_Auto含まない.Drums.Miss; |
| 157 | 157 | Drums.n最大コンボ数 = this.actCombo.dgbコンボ数.Drums.n最高値; |
| 158 | 158 | Drums.n全チップ数 = CDTXMania.Instance.DTX.n可視チップ数.Drums; |
| 159 | - for (EPad i = EPad.Min; i < EPad.Max; i++) | |
| 159 | + for ( EPad i = EPad.Min; i < EPad.BassPadMax; i++ ) | |
| 160 | 160 | { |
| 161 | 161 | Drums.bAutoPlay[i] = CDTXMania.Instance.ConfigIni.bAutoPlay[i]; |
| 162 | 162 | } |
| @@ -224,7 +224,7 @@ namespace DTXMania | ||
| 224 | 224 | Guitar.nMiss数_Auto含まない = this.nヒット数_Auto含まない.Guitar.Miss; |
| 225 | 225 | Guitar.n最大コンボ数 = this.actCombo.dgbコンボ数.Guitar.n最高値; |
| 226 | 226 | Guitar.n全チップ数 = CDTXMania.Instance.DTX.n可視チップ数.Guitar; |
| 227 | - for (EPad i = EPad.Min; i < EPad.Max; i++) | |
| 227 | + for (EPad i = EPad.Min; i < EPad.BassPadMax; i++) | |
| 228 | 228 | { |
| 229 | 229 | Guitar.bAutoPlay[i] = CDTXMania.Instance.ConfigIni.bAutoPlay[i]; |
| 230 | 230 | } |
| @@ -290,7 +290,7 @@ namespace DTXMania | ||
| 290 | 290 | Bass.nMiss数_Auto含まない = this.nヒット数_Auto含まない.Bass.Miss; |
| 291 | 291 | Bass.n最大コンボ数 = this.actCombo.dgbコンボ数.Bass.n最高値; |
| 292 | 292 | Bass.n全チップ数 = CDTXMania.Instance.DTX.n可視チップ数.Bass; |
| 293 | - for (EPad i = EPad.Min; i < EPad.Max; i++) | |
| 293 | + for (EPad i = EPad.Min; i < EPad.BassPadMax; i++) | |
| 294 | 294 | { |
| 295 | 295 | Bass.bAutoPlay[i] = CDTXMania.Instance.ConfigIni.bAutoPlay[i]; |
| 296 | 296 | } |
| @@ -23,7 +23,7 @@ namespace DTXMania | ||
| 23 | 23 | { |
| 24 | 24 | // プロパティ |
| 25 | 25 | #region [ properties ] |
| 26 | - public static readonly string VERSION = "108(170301)"; | |
| 26 | + public static readonly string VERSION = "108(170401)"; | |
| 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 |
| @@ -2081,7 +2081,7 @@ namespace DTXMania | ||
| 2081 | 2081 | } |
| 2082 | 2082 | catch (SerializationException e) |
| 2083 | 2083 | { |
| 2084 | - Trace.TraceWarning( "Rel107以前の古いフォーマットのCoordinates.xmlが読み込まれました。無視します。" ); | |
| 2084 | + Trace.TraceWarning( "Rel107以前の古いフォーマットのCoordinates.xmlが読み込まれました。無視します。\n" + e.Message ); | |
| 2085 | 2085 | } |
| 2086 | 2086 | } |
| 2087 | 2087 | } |