1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-18 00:23:22 +08:00
osu-lazer/osu.Game/Rulesets/Objects/Legacy
Bartłomiej Dach c4a0ca326e
Replace sample bank fix with more correct fix
stable does not treat unknown enum members as `None` / `Auto`, it treats
them as `Normal`:

    switch (sampleSet)
    {
        case SampleSet.Normal:
        default:
            sample = 0;
            break;
        case SampleSet.None:
        case SampleSet.Soft:
            sample = 1;
            break;
        case SampleSet.Drum:
            sample = 2;
            break;
    }

    (from 1531237b63/osu!/Audio/AudioEngine.cs#L1158-L1171).
2023-09-19 13:53:49 +02:00
..
Catch Automated pass 2023-06-24 01:00:03 +09:00
Mania Automated pass 2023-06-24 01:00:03 +09:00
Osu Fix GenerateTicks being lost during osu! beatmap conversion process 2023-07-08 23:24:38 +02:00
Taiko Automated pass 2023-06-24 01:00:03 +09:00
ConvertHitObject.cs Automated pass 2023-06-24 01:00:03 +09:00
ConvertHitObjectParser.cs Replace sample bank fix with more correct fix 2023-09-19 13:53:49 +02:00
ConvertSlider.cs Rename SliderVelocity to SliderVelocityMultiplier to distinguish from Velocity 2023-09-06 19:01:08 +09:00