Line: 146 <- Pointer of Issue
At runtime have unexpected behavior for solving var id as byte, but not as int for sources. getId() in ISourceContext class has return value of int.
For some reason in certain environments we have interesting behavior for solving this variable as byte, but expecting int.
Actual solution change type from var to int at line 139. Cause ISourceContext.getId() returns int.
Issue: #29
potential-bug-fix
In class SoundFXProcessor:
Line: 146 <- Pointer of Issue At runtime have unexpected behavior for solving
var id
asbyte
, but not asint
forsources
.getId()
inISourceContext
class has return value ofint
.For some reason in certain environments we have interesting behavior for solving this variable as
byte
, but expectingint
.Actual solution change type from
var
toint
at line 139. CauseISourceContext.getId()
returnsint
.