Remove u{char,short,int}

FossilOrigin-Name: b5bfe2af86efc76d1ac600bf7cda4a1709aaa95ae2392ee9e3f98ce6d4b14bcf
This commit is contained in:
Jonathan Schleifer 2025-03-23 02:59:37 +00:00
parent 006dba8370
commit 3a7e871e0e
20 changed files with 109 additions and 100 deletions

View file

@ -149,11 +149,13 @@ render_flat(int wtex, int x, int y, int size, int h, struct sqr *l1,
curvert -= 2;
nquads--;
} else {
uchar *p3 = (uchar *)(&verts[curvert - 1].r);
unsigned char *p3 =
(unsigned char *)(&verts[curvert - 1].r);
ol3r = p3[0];
ol3g = p3[1];
ol3b = p3[2];
uchar *p4 = (uchar *)(&verts[curvert - 2].r);
unsigned char *p4 =
(unsigned char *)(&verts[curvert - 2].r);
ol4r = p4[0];
ol4g = p4[1];
ol4b = p4[2];