mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 14:20:59 +00:00
Make R_SetVrect const-correct.
This commit is contained in:
parent
91e3769c05
commit
67c220de76
2 changed files with 2 additions and 2 deletions
|
@ -68,7 +68,7 @@ int D_SurfaceCacheForRes (int width, int height);
|
|||
void D_FlushCaches (void);
|
||||
void D_DeleteSurfaceCache (void);
|
||||
void D_InitCaches (void *buffer, int size);
|
||||
void R_SetVrect (vrect_t *pvrect, vrect_t *pvrectin, int lineadj);
|
||||
void R_SetVrect (const vrect_t *pvrect, vrect_t *pvrectin, int lineadj);
|
||||
|
||||
void R_LoadSkys (const char *);
|
||||
|
||||
|
|
|
@ -111,7 +111,7 @@ vrect_t scr_vrect;
|
|||
qboolean scr_skipupdate;
|
||||
|
||||
void
|
||||
R_SetVrect (vrect_t *vrectin, vrect_t *vrect, int lineadj)
|
||||
R_SetVrect (const vrect_t *vrectin, vrect_t *vrect, int lineadj)
|
||||
{
|
||||
float size;
|
||||
int h;
|
||||
|
|
Loading…
Reference in a new issue