kicad-ogltest: if version can't be interpreted, print it

This commit is contained in:
Chris Pavlina 2017-03-29 16:25:32 -04:00
parent c8ef5208ee
commit 23590d8d3f
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ bool OGLTEST_APP::OnInit()
if( !OGLVersionRegex.Matches( version ) ) if( !OGLVersionRegex.Matches( version ) )
{ {
printf( "FAIL: Cannot interpret OpenGL version\n" ); printf( "FAIL: Cannot interpret OpenGL version %s\n", pversion );
return false; return false;
} }