mirror of
https://github.com/osukey/osukey.git
synced 2025-05-29 09:27:18 +09:00
Fix parsing of null configuration elements
This commit is contained in:
parent
04c2c33c64
commit
f655cd4516
@ -77,7 +77,8 @@ namespace osu.Game.Skinning
|
|||||||
val = val == "1" ? "true" : "false";
|
val = val == "1" ? "true" : "false";
|
||||||
|
|
||||||
var bindable = new Bindable<TValue>();
|
var bindable = new Bindable<TValue>();
|
||||||
bindable.Parse(val);
|
if (val != null)
|
||||||
|
bindable.Parse(val);
|
||||||
return bindable;
|
return bindable;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user