Hello,
in "include/SFML/Graphics/Transform.h" we have :
sfTransform sfTransform_Identity;
I have by error modified it. So after this modification it is not an identity matrix anymore.
"const" makes it unmodificable, but still if I provide it by error to a function like sfTransform_rotate() the function will apply silently while actually the operation has not been done without any error reported to the programmer.
So I would suggest to remove "sfTransform_Identity", and provide instead "sfTransform_getIdentity()" :
sfTransform sfTransform_getIdentity(void);
Cheers