Skip to content
This repository was archived by the owner on Mar 9, 2020. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions TJAPlayer3/Stages/07.Game/Taiko/CAct演奏DrumsRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,8 @@ public override int On進行描画()
}
for (int n = stRunners[i].nOldValue; n < stRunners[i].ct進行.n現在の値; n++)
{
stRunners[i].fX += (float)TJAPlayer3.stage演奏ドラム画面.actPlayInfo.dbBPM / 18;
double dbBPM = TJAPlayer3.stage演奏ドラム画面.actPlayInfo.dbBPM >= 0 ? TJAPlayer3.stage演奏ドラム画面.actPlayInfo.dbBPM : TJAPlayer3.stage演奏ドラム画面.actPlayInfo.dbBPM * -1;
stRunners[i].fX += (float)dbBPM / 18;
int Width = 1280 / Ptn;
stRunners[i].nNowPtn = (int)stRunners[i].fX / Width;
}
Expand Down Expand Up @@ -156,4 +157,4 @@ private struct STRunner
//-----------------
#endregion
}
}
}