cursorExpand is now a bool

This commit is contained in:
Dragicafit
2018-12-07 23:52:57 +01:00
parent ec3c87dbea
commit 506f27a92e
3 changed files with 3 additions and 3 deletions

View File

@ -31,7 +31,7 @@ namespace osu.Game.Skinning
skin.SkinInfo.Creator = pair.Value;
break;
case @"CursorExpand":
skin.CursorExpand = pair.Value;
skin.CursorExpand = !pair.Value.Equals("0");
break;
}