diff options
| author | Twinaphex | 2017-06-18 18:41:06 +0200 | 
|---|---|---|
| committer | GitHub | 2017-06-18 18:41:06 +0200 | 
| commit | 1aecedc999445e9a27e04f665fd562b576775d08 (patch) | |
| tree | c526c7d332be548a42364eea9113b6d33345b840 /source/c4.c | |
| parent | dc596c886e0ec2728dc353dd7862cdf1e5a5ff44 (diff) | |
| parent | bcaf44c511efaad9d803dde9b0fdbb046498c66f (diff) | |
| download | snes9x2005-1aecedc999445e9a27e04f665fd562b576775d08.tar.gz snes9x2005-1aecedc999445e9a27e04f665fd562b576775d08.tar.bz2 snes9x2005-1aecedc999445e9a27e04f665fd562b576775d08.zip  | |
Merge pull request #36 from jamsilva/master
Compatibility fixes.
Diffstat (limited to 'source/c4.c')
| -rw-r--r-- | source/c4.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/source/c4.c b/source/c4.c index 9519cc3..251493c 100644 --- a/source/c4.c +++ b/source/c4.c @@ -111,9 +111,9 @@ int16_t _atan2(int16_t x, int16_t y)     int32_t absAtan;     if (x1 > y1) -      absAtan = atantbl[(unsigned char)((y1 << 8) / x1)]; +      absAtan = atantbl[(uint8_t)((y1 << 8) / x1)];     else -      absAtan = atantbl[(unsigned char)((x1 << 8) / y1)]; +      absAtan = atantbl[(uint8_t)((x1 << 8) / y1)];     if ((x >= 0) ^ (y >= 0))        return -absAtan;  | 
