Default to OpenGL until software works proper on windows
This commit is contained in:
parent
6b314ef4da
commit
ee7546f40a
1 changed files with 4 additions and 0 deletions
|
|
@ -73,7 +73,11 @@ CV_PossibleValue_t cv_renderer_t[] = {
|
|||
{0, NULL}
|
||||
};
|
||||
|
||||
#ifdef HWRENDER
|
||||
consvar_t cv_renderer = CVAR_INIT ("renderer", "OpenGL", CV_SAVE|CV_NOLUA|CV_CALL, cv_renderer_t, SCR_ChangeRenderer);
|
||||
#else
|
||||
consvar_t cv_renderer = CVAR_INIT ("renderer", "Software", CV_SAVE|CV_NOLUA|CV_CALL, cv_renderer_t, SCR_ChangeRenderer);
|
||||
#endif
|
||||
|
||||
static void SCR_ChangeFullscreen(void);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue