From 263a6cc5b5dca239c7c6bbd9e7152430c0e204db Mon Sep 17 00:00:00 2001 From: Steve Date: Thu, 3 Mar 2016 07:47:18 +0000 Subject: [PATCH] Removed unneeded abs on hashcode. --- src/draw/text.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/draw/text.c b/src/draw/text.c index df05a20..abfa6da 100644 --- a/src/draw/text.c +++ b/src/draw/text.c @@ -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)