mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-26 03:30:46 +00:00
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:
parent
10de03aa7d
commit
35e4f19ceb
1 changed files with 1 additions and 1 deletions
|
@ -2113,7 +2113,7 @@ static inline int32_t getkensmessagecrc(void *b)
|
||||||
|
|
||||||
#else // __GNUC__ && __i386__
|
#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
|
// JBF 20030901: This was a damn lot simpler to reverse engineer than
|
||||||
// msqrtasm was. Really, it was just like simplifying an algebra equation.
|
// msqrtasm was. Really, it was just like simplifying an algebra equation.
|
||||||
|
|
Loading…
Reference in a new issue