Allow nullable host in DesktopStorage ctor

The base `NativeStorage` is null-tolerant anyways.

This was relied on in a game-side usage:

	511451770c/osu.Game.Tournament/IPC/FileBasedIPC.cs (L67)
This commit is contained in:
Bartłomiej Dach
2023-06-24 19:02:04 +02:00
parent 5873cab9a3
commit dcb7e2f634

View File

@@ -5,7 +5,7 @@ namespace osu.Framework.Platform
{
public class DesktopStorage : NativeStorage
{
public DesktopStorage(string path, DesktopGameHost host)
public DesktopStorage(string path, DesktopGameHost? host)
: base(path, host)
{
}