mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-04-27 20:36:24 +00:00
The original C code had if(m & 0x00800000) which is true if the expresssion does not evaluate to zero. This was inncorretly translated to the C# code if((m & 0x00800000) == 1) which only evaluates true if the expression evalaute to 1, which it never does. The correct test is to test not equal to zero (!= 0). |
||
---|---|---|
.. | ||
Bind | ||
Build.UpdateVersion | ||
Compatibility | ||
Converter | ||
Examples | ||
Generator.Rewrite | ||
GLControl | ||
OpenTK |