mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 00:40:09 +09:00
Always confirm exit when button is clicked
This commit is contained in:
@ -85,7 +85,11 @@ namespace osu.Game.Screens.Menu
|
||||
OnEdit = delegate { this.Push(new Editor()); },
|
||||
OnSolo = onSolo,
|
||||
OnMulti = delegate { this.Push(new Multiplayer()); },
|
||||
OnExit = this.Exit,
|
||||
OnExit = delegate
|
||||
{
|
||||
exitConfirmed = true;
|
||||
this.Exit();
|
||||
},
|
||||
}
|
||||
}
|
||||
},
|
||||
|
Reference in New Issue
Block a user