osu-db icon indicating copy to clipboard operation
osu-db copied to clipboard

Hitcount documentation incorrect for mania

Open Yentis opened this issue 4 years ago • 0 comments

Specifically for count_100 -> these are 100s in mania, not 200s. The correct comment is already there for count_katsu which is the actual value for 200s in mania.

So in summary:

let count_max = f32::from(replay.count_geki);
let count_300 = f32::from(replay.count_300);
let count_200 = f32::from(replay.count_katsu);
let count_100 = f32::from(replay.count_100);
let count_50 = f32::from(replay.count_50);
let count_miss = f32::from(replay.count_miss);

Yentis avatar Nov 23 '21 07:11 Yentis