1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-20 01:59:54 +08:00

Merge pull request #28031 from peppy/reduce-volume

Reduce startup volume
This commit is contained in:
Dan Balasescu
2024-05-01 04:44:00 +09:00
committed by GitHub
Unverified
+4 -1
View File
@@ -841,7 +841,10 @@ namespace osu.Game
{
// General expectation that osu! starts in fullscreen by default (also gives the most predictable performance).
// However, macOS is bound to have issues when using exclusive fullscreen as it takes full control away from OS, therefore borderless is default there.
{ FrameworkSetting.WindowMode, RuntimeInfo.OS == RuntimeInfo.Platform.macOS ? WindowMode.Borderless : WindowMode.Fullscreen }
{ FrameworkSetting.WindowMode, RuntimeInfo.OS == RuntimeInfo.Platform.macOS ? WindowMode.Borderless : WindowMode.Fullscreen },
{ FrameworkSetting.VolumeUniversal, 0.6 },
{ FrameworkSetting.VolumeMusic, 0.6 },
{ FrameworkSetting.VolumeEffect, 0.6 },
};
}