Take two for satisyfing picky compilers (casting nullptr to void*)

This commit is contained in:
Maciej Suminski 2017-08-08 14:53:34 +02:00
parent e91ce300fb
commit ef6910faa9
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ void enableGlDebug( bool aEnable )
if( aEnable )
{
glEnable( GL_DEBUG_OUTPUT );
glDebugMessageCallback( debugMsgCallback, (const void*) nullptr );
glDebugMessageCallback( debugMsgCallback, (void*) nullptr );
}
else
{