From ef6910faa9bf12532eb4f3435f2eed097ecc83c4 Mon Sep 17 00:00:00 2001 From: Maciej Suminski Date: Tue, 8 Aug 2017 14:53:34 +0200 Subject: [PATCH] Take two for satisyfing picky compilers (casting nullptr to void*) --- common/gal/opengl/utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/gal/opengl/utils.cpp b/common/gal/opengl/utils.cpp index fa3f439d99..ef99ff9042 100644 --- a/common/gal/opengl/utils.cpp +++ b/common/gal/opengl/utils.cpp @@ -95,7 +95,7 @@ void enableGlDebug( bool aEnable ) if( aEnable ) { glEnable( GL_DEBUG_OUTPUT ); - glDebugMessageCallback( debugMsgCallback, (const void*) nullptr ); + glDebugMessageCallback( debugMsgCallback, (void*) nullptr ); } else {