ref_soft: fix pointer-to-int casts

This commit is contained in:
Alibek Omarov 2021-07-20 16:03:35 +03:00
parent 0efc5e82ec
commit 588dede2a2
1 changed files with 1 additions and 1 deletions

View File

@ -1250,7 +1250,7 @@ void D_DrawflatSurfaces (void)
// make a stable color for each surface by taking the low
// bits of the msurface pointer
D_FlatFillSurface (s, (int)s->msurf & 0xFFFF);
D_FlatFillSurface (s, (uintptr_t)s->msurf & 0xFFFF);
D_DrawZSpans (s->spans);
}
}