mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-22 12:31:10 +00:00
Fix the calls for Draw_Init in the gl renderers.
While namehack.h took care of the symbol mangling, I do prefer the calls to be correct as it reduces confusion.
This commit is contained in:
parent
0f75bdce17
commit
88692f92d9
2 changed files with 2 additions and 2 deletions
|
@ -148,7 +148,7 @@ gl_R_Init (void)
|
|||
"Load a pointfile to determine map leaks");
|
||||
Cmd_AddCommand ("loadsky", gl_R_LoadSky_f, "Load a skybox");
|
||||
|
||||
Draw_Init ();
|
||||
gl_Draw_Init ();
|
||||
SCR_Init ();
|
||||
gl_R_InitBubble ();
|
||||
|
||||
|
|
|
@ -252,7 +252,7 @@ glsl_R_Init (void)
|
|||
"Test the current refresh rate for the current location.");
|
||||
R_Init_Cvars ();
|
||||
glsl_R_Particles_Init_Cvars ();
|
||||
Draw_Init ();
|
||||
glsl_Draw_Init ();
|
||||
SCR_Init ();
|
||||
glsl_R_InitBsp ();
|
||||
glsl_R_InitAlias ();
|
||||
|
|
Loading…
Reference in a new issue