ref_soft: fix pointer-to-int casts
This commit is contained in:
parent
0efc5e82ec
commit
588dede2a2
1 changed files with 1 additions and 1 deletions
|
@ -1250,7 +1250,7 @@ void D_DrawflatSurfaces (void)
|
||||||
|
|
||||||
// make a stable color for each surface by taking the low
|
// make a stable color for each surface by taking the low
|
||||||
// bits of the msurface pointer
|
// bits of the msurface pointer
|
||||||
D_FlatFillSurface (s, (int)s->msurf & 0xFFFF);
|
D_FlatFillSurface (s, (uintptr_t)s->msurf & 0xFFFF);
|
||||||
D_DrawZSpans (s->spans);
|
D_DrawZSpans (s->spans);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue