1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 13:37:25 +08:00

Equals to == for string

This commit is contained in:
Dragicafit 2018-12-09 13:29:14 +01:00 committed by GitHub
parent 506f27a92e
commit 9afbebf560
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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