Fixed: Compilation with clang

--HG--
branch : develop
This commit is contained in:
kervala 2016-12-05 20:13:15 +01:00
parent 0bc80be124
commit 9cdb7446ce

View file

@ -2751,7 +2751,7 @@ void CDriverGL::setWindowSize(uint32 width, uint32 height)
setWindowStyle(EWSFullscreen); setWindowStyle(EWSFullscreen);
// set the back buffer manually to match the desired rendering resolution // set the back buffer manually to match the desired rendering resolution
GLint dim[2] = { width, height }; GLint dim[2] = { (GLint)width, (GLint)height };
CGLError error = CGLSetParameter( CGLError error = CGLSetParameter(
(CGLContextObj)[_ctx CGLContextObj], (CGLContextObj)[_ctx CGLContextObj],
kCGLCPSurfaceBackingSize, dim); kCGLCPSurfaceBackingSize, dim);