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

Fix potential crash in tests when attempting to lookup key bindings in cases the lookup is not available

This commit is contained in:
Dean Herbert 2022-03-03 16:28:32 +09:00
parent 835cb09537
commit 8115a4bb8f

View File

@ -14,6 +14,8 @@ namespace osu.Game.Configuration
public DevelopmentOsuConfigManager(Storage storage) public DevelopmentOsuConfigManager(Storage storage)
: base(storage) : base(storage)
{ {
LookupKeyBindings = _ => "unknown";
LookupSkinName = _ => "unknown";
} }
} }
} }