x11drv: Fix a warning when opengl headers are missing.
This commit is contained in:
parent
3a3a0b3013
commit
a0882e9bf7
|
@ -660,7 +660,7 @@ BOOL X11DRV_SetPixelFormat(X11DRV_PDEVICE *physDev,
|
||||||
* SwapBuffers (X11DRV.@)
|
* SwapBuffers (X11DRV.@)
|
||||||
*/
|
*/
|
||||||
BOOL X11DRV_SwapBuffers(X11DRV_PDEVICE *physDev) {
|
BOOL X11DRV_SwapBuffers(X11DRV_PDEVICE *physDev) {
|
||||||
ERR("No OpenGL support compiled in.\n");
|
ERR_(opengl)("No OpenGL support compiled in.\n");
|
||||||
|
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue