x11drv: Fix a warning when opengl headers are missing.

This commit is contained in:
Mike McCormack 2006-05-09 17:37:37 +09:00 committed by Alexandre Julliard
parent 3a3a0b3013
commit a0882e9bf7

View file

@ -660,7 +660,7 @@ BOOL X11DRV_SetPixelFormat(X11DRV_PDEVICE *physDev,
* SwapBuffers (X11DRV.@)
*/
BOOL X11DRV_SwapBuffers(X11DRV_PDEVICE *physDev) {
ERR("No OpenGL support compiled in.\n");
ERR_(opengl)("No OpenGL support compiled in.\n");
return FALSE;
}