mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
__fastcall int32_t getangle -> int32_t fastcall getangle. Might fix MSVC build.
git-svn-id: https://svn.eduke32.com/eduke32@3012 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
011e2b714a
commit
22a4eaaf3d
1 changed files with 1 additions and 1 deletions
|
@ -11019,7 +11019,7 @@ int32_t inside(int32_t x, int32_t y, int16_t sectnum)
|
|||
return(cnt>>31);
|
||||
}
|
||||
|
||||
__fastcall int32_t getangle(int32_t xvect, int32_t yvect)
|
||||
int32_t __fastcall getangle(int32_t xvect, int32_t yvect)
|
||||
{
|
||||
if ((xvect|yvect) == 0) return(0);
|
||||
if (xvect == 0) return 512+((yvect<0)<<10);
|
||||
|
|
Loading…
Reference in a new issue