more sequence/order of operations stuff

This commit is contained in:
DarthArgus
2015-10-13 11:36:05 -05:00
parent a790a1a88d
commit 2a2b6dd4b7
5 changed files with 22 additions and 9 deletions
@@ -614,7 +614,7 @@ inline int UpperHashString(const char *string)
int h = 0;
while (*string != 0)
{
h = ((31 * h) + (*string >= 'a' && *string <= 'z') ? (*string - 0x20) : *string) ^ (h >> 26);
h = ((31 * h) + ((*string >= 'a' && *string <= 'z') ? (*string - 0x20) : *string)) ^ (h >> 26);
string++;
}
return(h);