Skip to content

Commit

Permalink
全ての譜面で再生時に譜面にゴミが入る不具合を修正
Browse files Browse the repository at this point in the history
CONFIG画面を脱出する時にエラーが発生していたので修正
  • Loading branch information
kairera0467 committed Oct 8, 2017
1 parent 5423851 commit f647491
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions DTXManiaプロジェクト/コード/スコア、曲/CDTX.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2791,9 +2791,9 @@ private string[] tコマンド行を削除したTJAを返す( string[] input, in
{
if( !string.IsNullOrEmpty( input[ n ] ) && ( input[ n ].Substring( 0, 1 ) == "#" || this.CharConvertNote( input[ n ].Substring( 0, 1 ) ) != -1 ) )
{
if( input[ n ].StartsWith( "BALLOON" ) )
if( input[ n ].StartsWith( "BALLOON" ) || input[ n ].StartsWith( "BPM" ) )
{
//何もしない
//A~Fで始まる命令が削除されない不具合の対策
}
else
{
Expand All @@ -2805,9 +2805,9 @@ private string[] tコマンド行を削除したTJAを返す( string[] input, in
{
if( !string.IsNullOrEmpty( input[ n ] ) && this.CharConvertNote( input[ n ].Substring( 0, 1 ) ) != -1 )
{
if( input[ n ].StartsWith( "BALLOON" ) )
if( input[ n ].StartsWith( "BALLOON" ) || input[ n ].StartsWith( "BPM" ) )
{
//何もしない
//A~Fで始まる命令が削除されない不具合の対策
}
else
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2251,7 +2251,7 @@ private void tConfigIniへ記録する_System()
CDTXMania.ConfigIni.b演奏情報を表示する = this.iSystemDebugInfo.bON;
CDTXMania.ConfigIni.n背景の透過度 = this.iSystemBGAlpha.n現在の値;
CDTXMania.ConfigIni.bBGM音を発声する = this.iSystemBGMSound.bON;
CDTXMania.ConfigIni.b歓声を発声する = this.iSystemAudienceSound.bON;
//CDTXMania.ConfigIni.b歓声を発声する = this.iSystemAudienceSound.bON;
//CDTXMania.ConfigIni.eダメージレベル = (Eダメージレベル) this.iSystemDamageLevel.n現在選択されている項目番号;
CDTXMania.ConfigIni.bScoreIniを出力する = this.iSystemSaveScore.bON;

Expand All @@ -2260,7 +2260,7 @@ private void tConfigIniへ記録する_System()
//CDTXMania.ConfigIni.n自動再生音量 = this.iSystemAutoChipVolume.n現在の値;
//CDTXMania.ConfigIni.bストイックモード = this.iSystemStoicMode.bON;

CDTXMania.ConfigIni.nShowLagType = this.iSystemShowLag.n現在選択されている項目番号; // #25370 2011.6.3 yyagi
//CDTXMania.ConfigIni.nShowLagType = this.iSystemShowLag.n現在選択されている項目番号; // #25370 2011.6.3 yyagi
CDTXMania.ConfigIni.bIsAutoResultCapture = this.iSystemAutoResultCapture.bON; // #25399 2011.6.9 yyagi

CDTXMania.ConfigIni.nRisky = this.iSystemRisky.n現在の値; // #23559 2011.7.27 yyagi
Expand Down
Binary file modified 実行時フォルダ/DTXManiaGR.exe
Binary file not shown.

0 comments on commit f647491

Please sign in to comment.