1
0
mirror of synced 2024-11-24 15:40:22 +01:00

Make JPOSSCROLL 3rd argument optional

This commit is contained in:
0auBSQ 2023-02-22 02:43:04 +09:00
parent db17d2afea
commit 5db0f7b13f

View File

@ -4057,7 +4057,7 @@ namespace TJAPlayer3
WarnSplitLength("#JPOSSCROLL", strArray, 3);
double db移動時刻 = Convert.ToDouble(strArray[0]);
int n移動px = Convert.ToInt32(strArray[1]);
int n移動方向 = Convert.ToInt32(strArray[2]);
int n移動方向 = (strArray.Length >= 3) ? Convert.ToInt32(strArray[2]) : 0;
//チップ追加して割り込んでみる。
var chip = new CChip();