Since first open beta, sector yellow flags are filled by strange values.
Declared as
outputed as
in rF1 gives values 0 or 1 as expected
In rF2 I get various values I cannot decode. In most cases it is (11,11,11), but there are also values 1,2,3 which often appear
I suspect those variables has wrong references in memory... Please, maybe some rF2 developer would be able to answer.
Declared as
Code:
signed char mSectorFlag[3]
Code:
fprintf_s( fo, "SectorYellowFlags=(%d,%d,%d)\n", info.mSectorFlag[1], info.mSectorFlag[2], info.mSectorFlag[0]);
in rF1 gives values 0 or 1 as expected
In rF2 I get various values I cannot decode. In most cases it is (11,11,11), but there are also values 1,2,3 which often appear
I suspect those variables has wrong references in memory... Please, maybe some rF2 developer would be able to answer.