Skip to content

Commit

Permalink
Adjusted spin duration of ksh charts
Browse files Browse the repository at this point in the history
  • Loading branch information
Drewol committed Mar 18, 2018
1 parent 47dbccc commit 54440a2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Beatmap/src/BeatmapFromKSH.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1088,6 +1088,8 @@ bool Beatmap::m_ProcessKShootMap(BinaryStream& input, bool metadataOnly)
{
state->spinType = tick.add[1];
state->spinDuration = std::stoi(tick.add.substr(2));
if(state->spinType == '(' || state->spinType == ')')
state->spinDuration = (3 * std::stoi(tick.add.substr(2))) / 4;
}

}
Expand Down

0 comments on commit 54440a2

Please sign in to comment.