xpnteam / xpnet

Develop X-Plane plugins in .NET.
MIT License
50 stars 15 forks source link

Bool arrays DataRefs fail due to being mapped to the wrong size. #20

Open jaurenq opened 5 years ago

jaurenq commented 5 years ago

Bool is 32 bits inside a struct, but only 8 bits when in an array, so bool[] can't map directly to int32[] the way I thought it could. Need an efficient solution.