mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-28 12:30:46 +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)
|
||||
{
|
||||
Printf("%s %d: overflow\n", __func__, __LINE__);
|
||||
diff = INT_MAX;
|
||||
DPrintf(DMSG_WARNING, "%s %d: overflow\n", __func__, __LINE__);
|
||||
diff = INT_MAX;
|
||||
}
|
||||
|
||||
int theSqrt = ksqrt(diff);
|
||||
|
|
Loading…
Reference in a new issue