mirror of
https://github.com/FWGS/xash3d-fwgs
synced 2024-11-22 09:56:22 +01:00
ref_soft: fix pointer-to-int casts
This commit is contained in:
parent
0efc5e82ec
commit
588dede2a2
@ -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);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user