Make nsqrtasm return int32_t (instead of uint32_t) when compiled with GCC/x86.

git-svn-id: https://svn.eduke32.com/eduke32@2793 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
helixhorned 2012-07-01 22:11:20 +00:00
parent 10de03aa7d
commit 35e4f19ceb

View file

@ -2113,7 +2113,7 @@ static inline int32_t getkensmessagecrc(void *b)
#else // __GNUC__ && __i386__
static inline uint32_t nsqrtasm(uint32_t a)
static inline int32_t nsqrtasm(uint32_t a)
{
// JBF 20030901: This was a damn lot simpler to reverse engineer than
// msqrtasm was. Really, it was just like simplifying an algebra equation.