1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 10:52:53 +08:00

Use string.Empty

This commit is contained in:
Dean Herbert 2023-08-25 01:07:07 +09:00
parent 081fb308e1
commit 35cdd6d866

View File

@ -19,8 +19,8 @@ namespace osu.Game.Overlays
protected override bool StartHidden => true;
// `WaveContainer` plays PopIn/PopOut samples, so we disable the overlay-level one as to not double-up sample playback.
protected override string PopInSampleName => "";
protected override string PopOutSampleName => "";
protected override string PopInSampleName => string.Empty;
protected override string PopOutSampleName => string.Empty;
public const float HORIZONTAL_PADDING = 50;