Skip to content

Commit

Permalink
#78 リザルト画面での処理を間違えていたので修正
Browse files Browse the repository at this point in the history
#78 readme.txt「対応していない命令」のSUBTITLEに関する記述を更新
  • Loading branch information
kairera0467 committed Apr 29, 2021
1 parent c11462d commit 7a4f0c6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,18 +37,9 @@ public override void On活性化()
else
this.pfMusicName = new CPrivateFastFont( new FontFamily( "MS PGothic" ), 30 );

// 2021.04.30 kairera0467 SUBTITLEの完全対応
string title = CDTXMania.DTX.TITLE;
#region[ タイトル文字列の生成 ]
if( CDTXMania.DTX.nSubTitleDispType == 1 )
{
title += string.Format( " {0}", CDTXMania.DTX.SUBTITLE );
}
#endregion

Bitmap bmpSongTitle = new Bitmap(1, 1);
bmpSongTitle = pfMusicName.DrawPrivateFont( title, Color.White, Color.Black );
this.txMusicName = CDTXMania.tテクスチャの生成( bmpSongTitle, false );
bmpSongTitle = pfMusicName.DrawPrivateFont( string.Format( "{0} {1}", CDTXMania.DTX.TITLE, CDTXMania.DTX.SUBTITLE ), Color.White, Color.Black ); // 2021.04.30 kairera0467 SUBTITLEの完全対応
this.txMusicName = CDTXMania.tテクスチャの生成( bmpSongTitle, false );

base.On活性化();
}
Expand Down
Binary file modified 実行時フォルダ/DTXManiaGR.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion 実行時フォルダ/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ TJAPlayer2の名前を使わせていただいていますが、ただメソッ
・SIDE:
 ・選曲画面がまともじゃない
・SUBTITLE:
 ・ver2015082000で--は実装。++は後ほど
 ・ver2015082000で--は実装。ver2021xxxxxxで++と記号なしも実装しました
・TOTAL:
・#DELAY:
 ・動作が非常に怪しいです。そのうち作り直します。
Expand Down

0 comments on commit 7a4f0c6

Please sign in to comment.