Does naming functions and variables long names slow down a program? For example
I mean even a nano speed difference in these two functions
void GetMouseMovementXY(int x, int y)
{
MouseAngleX -= (x - OldMouseXcoordinate);
OldMouseXcoordinate = x;
MouseAngleY -= (y-OldMouseYcoordinate);
OldMouseYcoordinate = y;
}
Vs
void motion(int x, int y)
{
AngleX -= (x - OX);
OX = x;
AngleY -= (y-OY);
OY = y;
}