mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-29 23:52:22 +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_FlushCaches (void);
|
||||||
void D_DeleteSurfaceCache (void);
|
void D_DeleteSurfaceCache (void);
|
||||||
void D_InitCaches (void *buffer, int size);
|
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 *);
|
void R_LoadSkys (const char *);
|
||||||
|
|
||||||
|
|
|
@ -111,7 +111,7 @@ vrect_t scr_vrect;
|
||||||
qboolean scr_skipupdate;
|
qboolean scr_skipupdate;
|
||||||
|
|
||||||
void
|
void
|
||||||
R_SetVrect (vrect_t *vrectin, vrect_t *vrect, int lineadj)
|
R_SetVrect (const vrect_t *vrectin, vrect_t *vrect, int lineadj)
|
||||||
{
|
{
|
||||||
float size;
|
float size;
|
||||||
int h;
|
int h;
|
||||||
|
|
Loading…
Reference in a new issue