1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 15:32:54 +08:00

Merge pull request #12163 from owen-young/default-fullscreen

This commit is contained in:
Dean Herbert 2021-03-24 14:54:03 +09:00 committed by GitHub
commit 93921af82d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -531,6 +531,13 @@ namespace osu.Game
SentryLogger.Dispose();
}
protected override IDictionary<FrameworkSetting, object> GetFrameworkConfigDefaults()
=> new Dictionary<FrameworkSetting, object>
{
// General expectation that osu! starts in fullscreen by default (also gives the most predictable performance)
{ FrameworkSetting.WindowMode, WindowMode.Fullscreen }
};
protected override void LoadComplete()
{
base.LoadComplete();