mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-25 05:31:00 +00:00
Fixed compilation warning reported by GCC/Clang
src/v_draw.cpp:503:25: warning: comparison of integers of different signs: 'uint32_t' (aka 'unsigned int') and 'int' [-Wsign-compare]
This commit is contained in:
parent
e5d4d9a36a
commit
c8eabe57ff
1 changed files with 1 additions and 1 deletions
|
@ -500,7 +500,7 @@ bool DCanvas::ParseDrawTextureTags(FTexture *img, double x, double y, uint32_t t
|
||||||
|
|
||||||
case DTA_FillColor:
|
case DTA_FillColor:
|
||||||
parms->fillcolor = ListGetInt(tags);
|
parms->fillcolor = ListGetInt(tags);
|
||||||
if (parms->fillcolor != -1)
|
if (parms->fillcolor != ~0u)
|
||||||
{
|
{
|
||||||
fillcolorset = true;
|
fillcolorset = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue