mirror of https://github.com/ppy/osu
Don't attempt to play drum samples when rewinding
This commit is contained in:
parent
16f1a7694d
commit
f086908831
|
@ -44,6 +44,9 @@ protected virtual DrumSampleTriggerSource CreateTriggerSource(HitObjectContainer
|
|||
|
||||
public bool OnPressed(KeyBindingPressEvent<TaikoAction> e)
|
||||
{
|
||||
if (Time.Elapsed < 0)
|
||||
return false;
|
||||
|
||||
HitType hitType;
|
||||
|
||||
DrumSampleTriggerSource triggerSource;
|
||||
|
|
Loading…
Reference in New Issue