mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-29 04:50:42 +00:00
- downgrade overflow message to a debug warning.
This commit is contained in:
parent
b73b59cf66
commit
3ecd02dcac
1 changed files with 2 additions and 2 deletions
|
@ -177,8 +177,8 @@ void feebtag(int x, int y, int z, int nSector, short *nSprite, int nVal2, int nV
|
||||||
|
|
||||||
if (diff > INT_MAX)
|
if (diff > INT_MAX)
|
||||||
{
|
{
|
||||||
Printf("%s %d: overflow\n", __func__, __LINE__);
|
DPrintf(DMSG_WARNING, "%s %d: overflow\n", __func__, __LINE__);
|
||||||
diff = INT_MAX;
|
diff = INT_MAX;
|
||||||
}
|
}
|
||||||
|
|
||||||
int theSqrt = ksqrt(diff);
|
int theSqrt = ksqrt(diff);
|
||||||
|
|
Loading…
Reference in a new issue