diff --git a/osu.Game/Beatmaps/IWorkingBeatmap.cs b/osu.Game/Beatmaps/IWorkingBeatmap.cs
index b932e67bae..a087a52ada 100644
--- a/osu.Game/Beatmaps/IWorkingBeatmap.cs
+++ b/osu.Game/Beatmaps/IWorkingBeatmap.cs
@@ -27,7 +27,7 @@ namespace osu.Game.Beatmaps
Texture Background { get; }
///
- /// Retrieves the video file for this .
+ /// Retrieves the video background file for this .
///
VideoSprite Video { get; }
diff --git a/osu.Game/Beatmaps/WorkingBeatmap.cs b/osu.Game/Beatmaps/WorkingBeatmap.cs
index b489936556..bf3fa90d7b 100644
--- a/osu.Game/Beatmaps/WorkingBeatmap.cs
+++ b/osu.Game/Beatmaps/WorkingBeatmap.cs
@@ -185,7 +185,6 @@ namespace osu.Game.Beatmaps
public bool BackgroundLoaded => background.IsResultAvailable;
public Texture Background => background.Value;
protected virtual bool BackgroundStillValid(Texture b) => b == null || b.Available;
-
protected abstract Texture GetBackground();
private readonly RecyclableLazy background;
diff --git a/osu.Game/Configuration/OsuConfigManager.cs b/osu.Game/Configuration/OsuConfigManager.cs
index 357883da45..71a74a5558 100644
--- a/osu.Game/Configuration/OsuConfigManager.cs
+++ b/osu.Game/Configuration/OsuConfigManager.cs
@@ -69,7 +69,7 @@ namespace osu.Game.Configuration
Set(OsuSetting.ShowFpsDisplay, false);
Set(OsuSetting.ShowStoryboard, true);
- Set(OsuSetting.ShowVideo, true);
+ Set(OsuSetting.ShowVideoBackground, true);
Set(OsuSetting.BeatmapSkins, true);
Set(OsuSetting.BeatmapHitsounds, true);
@@ -137,7 +137,7 @@ namespace osu.Game.Configuration
DimLevel,
BlurLevel,
ShowStoryboard,
- ShowVideo,
+ ShowVideoBackground,
KeyOverlay,
ScoreMeter,
FloatingComments,
diff --git a/osu.Game/Graphics/Containers/UserDimContainer.cs b/osu.Game/Graphics/Containers/UserDimContainer.cs
index d0e932fac0..7683bbcd63 100644
--- a/osu.Game/Graphics/Containers/UserDimContainer.cs
+++ b/osu.Game/Graphics/Containers/UserDimContainer.cs
@@ -56,7 +56,7 @@ namespace osu.Game.Graphics.Containers
{
UserDimLevel = config.GetBindable(OsuSetting.DimLevel);
ShowStoryboard = config.GetBindable(OsuSetting.ShowStoryboard);
- ShowVideo = config.GetBindable(OsuSetting.ShowVideo);
+ ShowVideo = config.GetBindable(OsuSetting.ShowVideoBackground);
EnableUserDim.ValueChanged += _ => UpdateVisuals();
UserDimLevel.ValueChanged += _ => UpdateVisuals();
diff --git a/osu.Game/Overlays/Settings/Sections/Graphics/DetailSettings.cs b/osu.Game/Overlays/Settings/Sections/Graphics/DetailSettings.cs
index 6d9870598f..56e56f6ca8 100644
--- a/osu.Game/Overlays/Settings/Sections/Graphics/DetailSettings.cs
+++ b/osu.Game/Overlays/Settings/Sections/Graphics/DetailSettings.cs
@@ -24,7 +24,7 @@ namespace osu.Game.Overlays.Settings.Sections.Graphics
new SettingsCheckbox
{
LabelText = "Video",
- Bindable = config.GetBindable(OsuSetting.ShowVideo)
+ Bindable = config.GetBindable(OsuSetting.ShowVideoBackground)
},
new SettingsCheckbox
{
diff --git a/osu.Game/Screens/Play/PlayerSettings/VisualSettings.cs b/osu.Game/Screens/Play/PlayerSettings/VisualSettings.cs
index 5e47b730ad..ff64f35a18 100644
--- a/osu.Game/Screens/Play/PlayerSettings/VisualSettings.cs
+++ b/osu.Game/Screens/Play/PlayerSettings/VisualSettings.cs
@@ -50,7 +50,7 @@ namespace osu.Game.Screens.Play.PlayerSettings
dimSliderBar.Bindable = config.GetBindable(OsuSetting.DimLevel);
blurSliderBar.Bindable = config.GetBindable(OsuSetting.BlurLevel);
showStoryboardToggle.Current = config.GetBindable(OsuSetting.ShowStoryboard);
- showVideoToggle.Current = config.GetBindable(OsuSetting.ShowVideo);
+ showVideoToggle.Current = config.GetBindable(OsuSetting.ShowVideoBackground);
beatmapSkinsToggle.Current = config.GetBindable(OsuSetting.BeatmapSkins);
beatmapHitsoundsToggle.Current = config.GetBindable(OsuSetting.BeatmapHitsounds);
}