mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-28 23:31:57 +00:00
client: fix gles3 name
Fix regression introduced in e61d9444c
https://github.com/yquake2/yquake2/issues/1097
This commit is contained in:
parent
8d04ed0bbf
commit
c1920e3ec4
1 changed files with 1 additions and 1 deletions
|
@ -544,7 +544,7 @@ VID_CheckChanges(void)
|
||||||
else if (strcmp(vid_renderer->string, "gl3") == 0)
|
else if (strcmp(vid_renderer->string, "gl3") == 0)
|
||||||
{
|
{
|
||||||
Com_Printf("Retrying with gles3...\n");
|
Com_Printf("Retrying with gles3...\n");
|
||||||
Cvar_Set("vid_renderer", "gles");
|
Cvar_Set("vid_renderer", "gles3");
|
||||||
}
|
}
|
||||||
else if (strcmp(vid_renderer->string, "gles3") == 0)
|
else if (strcmp(vid_renderer->string, "gles3") == 0)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue