Removed unneeded abs on hashcode.

This commit is contained in:
Steve 2016-03-03 07:47:18 +00:00
parent d980e412f2
commit 263a6cc5b5
1 changed files with 1 additions and 1 deletions

View File

@ -296,7 +296,7 @@ static unsigned long hashcode(const char *str, int size)
hash = ((hash << 5) + hash) + size;
return abs(hash);
return hash;
}
void destroyFonts(void)