mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-17 01:51:17 +00:00
- fix uninitialized variable.
This commit is contained in:
parent
b4cdcef159
commit
f273b6c46d
1 changed files with 1 additions and 1 deletions
|
@ -169,7 +169,7 @@ void gl_LoadExtensions()
|
|||
|
||||
void gl_PrintStartupLog()
|
||||
{
|
||||
int v;
|
||||
int v = 0;
|
||||
glGetIntegerv(GL_CONTEXT_PROFILE_MASK, &v);
|
||||
|
||||
Printf ("GL_VENDOR: %s\n", glGetString(GL_VENDOR));
|
||||
|
|
Loading…
Reference in a new issue