fixed wrong return value in radeonShowSurfaceMESA()

This commit is contained in:
Brian Paul 2005-11-23 01:39:56 +00:00
parent b8829facc7
commit a3d2c69e61

View file

@ -910,8 +910,8 @@ static EGLBoolean
radeonShowSurfaceMESA(_EGLDriver *drv, EGLDisplay dpy, EGLScreenMESA screen,
EGLSurface surface, EGLModeMESA m)
{
_eglDRIShowSurfaceMESA(drv, dpy, screen, surface, m);
return EGL_FALSE;
EGLBoolean b = _eglDRIShowSurfaceMESA(drv, dpy, screen, surface, m);
return b;
}
static EGLBoolean