mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2025-02-17 01:21:12 +00:00
Merge pull request #862 from devnexen/glrenderer_drawparticles_sig
R_DrawParticles2 signature slight change fixing build warning.
This commit is contained in:
commit
90eb2f394d
2 changed files with 2 additions and 2 deletions
|
@ -421,7 +421,7 @@ R_DrawEntitiesOnList(void)
|
|||
|
||||
void
|
||||
R_DrawParticles2(int num_particles, const particle_t particles[],
|
||||
const unsigned colortable[768])
|
||||
const unsigned *colortable)
|
||||
{
|
||||
const particle_t *p;
|
||||
int i;
|
||||
|
|
|
@ -304,7 +304,7 @@ int Scrap_AllocBlock(int w, int h, int *x, int *y);
|
|||
/* GL extension emulation functions */
|
||||
void R_DrawParticles2(int n,
|
||||
const particle_t particles[],
|
||||
const unsigned colortable[768]);
|
||||
const unsigned *colortable);
|
||||
|
||||
/*
|
||||
* GL config stuff
|
||||
|
|
Loading…
Reference in a new issue