GCC needs these casts to be explicit

This commit is contained in:
Ben "root" Anderson
2013-10-25 15:13:47 -05:00
parent 2d9890747c
commit 859a10e5c8
@@ -38,11 +38,11 @@ static void DestroyGraphicsWindowAndOpenGLContext()
void *LowLevelWindow_Win32::GetProcAddress( RString s )
{
void *pRet = wglGetProcAddress( s );
void *pRet = (void*) wglGetProcAddress( s );
if( pRet != NULL )
return pRet;
return ::GetProcAddress( GetModuleHandle(NULL), s );
return (void*) ::GetProcAddress( GetModuleHandle(NULL), s );
}
LowLevelWindow_Win32::LowLevelWindow_Win32()