mirror of
https://github.com/libretro/libretro-tyrquake.git
synced 2024-11-23 16:10:09 +00:00
render: mark input vrect const in R_SetVrect
Also, fix the argument names in the header file - an invitation for errors! Signed-off-by: Kevin Shanahan <kmshanah@disenchant.net>
This commit is contained in:
parent
f9a17a97a6
commit
b2afdc3b59
@ -349,7 +349,7 @@ R_SetVrect
|
||||
===============
|
||||
*/
|
||||
void
|
||||
R_SetVrect(vrect_t *pvrectin, vrect_t *pvrect, int lineadj)
|
||||
R_SetVrect(const vrect_t *pvrectin, vrect_t *pvrect, int lineadj)
|
||||
{
|
||||
int h;
|
||||
float size;
|
||||
|
@ -204,6 +204,6 @@ 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 *pvrectin, vrect_t *pvrect, int lineadj);
|
||||
|
||||
#endif /* RENDER_H */
|
||||
|
Loading…
Reference in New Issue
Block a user