drc/DRCbasic.c: Multiplication result converted to larger type
Fix code scanning alert no. 35: Multiplication result converted to larger type (#53) Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
This commit is contained in:
parent
5a8cdb68d0
commit
6cae64edc5
|
|
@ -176,7 +176,7 @@ areaCheck(tile, arg)
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
int sqx, sqy;
|
int sqx, sqy;
|
||||||
int sdist = arg->dCD_radial & 0xfff;
|
int sdist = arg->dCD_radial & 0xfff;
|
||||||
long sstest, ssdist = sdist * sdist;
|
long sstest, ssdist = (long) sdist * sdist;
|
||||||
|
|
||||||
if ((arg->dCD_radial & RADIAL_NW) != 0)
|
if ((arg->dCD_radial & RADIAL_NW) != 0)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue