mirror of
https://github.com/TheShadowEevee/libWiiSharp.git
synced 2025-01-11 15:38:51 -06:00
Fix cast issue
This commit is contained in:
parent
2319583070
commit
134346bc70
1 changed files with 1 additions and 1 deletions
2
BNS.cs
2
BNS.cs
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue