mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-02-02 22:41:38 +00:00
r_bbox.c: use size_t to access column array
This commit is contained in:
parent
8430dfa063
commit
5411d522e5
1 changed files with 3 additions and 3 deletions
|
@ -76,7 +76,7 @@ raster_bbox_seg
|
|||
static void
|
||||
draw_bbox_col
|
||||
( struct bbox_config * bb,
|
||||
int p,
|
||||
size_t p,
|
||||
fixed_t tx,
|
||||
fixed_t ty)
|
||||
{
|
||||
|
@ -104,8 +104,8 @@ draw_bbox_col
|
|||
static void
|
||||
draw_bbox_row
|
||||
( struct bbox_config * bb,
|
||||
int p1,
|
||||
int p2)
|
||||
size_t p1,
|
||||
size_t p2)
|
||||
{
|
||||
struct bbox_col
|
||||
*a = &bb->col[p1],
|
||||
|
|
Loading…
Reference in a new issue