Fix cast issue

This commit is contained in:
Michael 2021-05-15 06:56:26 -05:00
parent 2319583070
commit 134346bc70
No known key found for this signature in database
GPG key ID: 96FB9C8062A1892B

2
BNS.cs
View file

@ -89,7 +89,7 @@ namespace libWiiSharp
public bool HasLoop
{
get => bnsInfo.HasLoop == 1;
set => bnsInfo.HasLoop = value ? 1 : 0;
set => bnsInfo.HasLoop = (byte)(value ? 1 : 0);
}
/// <summary>