1
0
mirror of synced 2025-02-17 19:09:25 +01:00

Separate random and mirror mods for each players

This commit is contained in:
0aubsq 2022-05-22 02:43:27 +02:00
parent 3de86e5b25
commit c5996e4df7
2 changed files with 5 additions and 2 deletions

View File

@ -93,7 +93,7 @@ namespace TJAPlayer3
// メソッド
#region [ ]
#region [ Fetch song list ]
//-----------------
public void t曲を検索してリストを作成する( string str基点フォルダ, bool b子BOXへ再帰する )
{

View File

@ -531,10 +531,13 @@ namespace TJAPlayer3
{
TJAPlayer3.DTX.PlanToAddMixerChannel();
}
var _dtx = new CDTX[4]{ TJAPlayer3.DTX, TJAPlayer3.DTX_2P, null, null };
for (int i = 0; i < TJAPlayer3.ConfigIni.nPlayerCount; i++)
{
TJAPlayer3.DTX.tRandomizeTaikoChips(i);
_dtx[i]?.tRandomizeTaikoChips(i);
}