It looks like you're new here. If you want to get involved, click one of these buttons!
static orxBOOL filterAchiev(const orxSTRING _zSectionName, const orxSTRING _zKeyName, const orxSTRING _zFileName, orxBOOL _bUseEncryption){
orxLOG("Tracking section: %s / %s / %s", _zSectionName, _zKeyName, _zFileName);
if (orxString_NCompare(_zSectionName, "AchieveTrack", 12) == 0){
return orxTRUE;
}
return orxFALSE;
}
[18:15:58] [LOG] Tracking section: achievements.ini / (null) / (null)
[18:15:58] [LOG] Tracking section: achievements.ini / (null) / achievements.ini
Comments
I missed the warning because there are some warnings on code::blocks for unused functions and it got mixed in the middle (orxString_PrintUTF8Character, orxColor_FromRGBToHSL, orxColor_FromHSLToRGB, orxColor_FromRGBToHSV and orxColor_FromHSVToRGB).
Sorry for the invalid report.
As for the unused functions, there should be a command line parameter to silence it with your compiler (probably different between clang and gcc).