mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
Fixed issue #327 (oops!).
This commit is contained in:
parent
da8a691163
commit
c9cd5521bd
1 changed files with 1 additions and 1 deletions
|
@ -2861,7 +2861,7 @@ namespace bgfx { namespace gl
|
|||
if (!cached)
|
||||
{
|
||||
GLint linked = 0;
|
||||
if (0 == _vsh.m_id)
|
||||
if (0 != _vsh.m_id)
|
||||
{
|
||||
GL_CHECK(glAttachShader(m_id, _vsh.m_id) );
|
||||
|
||||
|
|
Loading…
Reference in a new issue