From 6ec0606616021f94c3b7b44b930094503b6b2c2f Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Tue, 16 Apr 2019 15:41:45 +0000 Subject: [PATCH] Oops, r346278 committed a test version with the change annulled. --- lib/libvgl/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libvgl/main.c b/lib/libvgl/main.c index a4fffadcc287..637967111aa1 100644 --- a/lib/libvgl/main.c +++ b/lib/libvgl/main.c @@ -274,7 +274,7 @@ VGLInit(int mode) * be too slow, and malloc() may fail). Restrict ourselves similarly to * get the same efficiency and bugs for all kernels. */ - if (0 && VGLModeInfo.vi_mode >= M_VESA_BASE) + if (VGLModeInfo.vi_mode >= M_VESA_BASE) VGLBufSize = 2*VGLAdpInfo.va_line_width*VGLModeInfo.vi_height* VGLModeInfo.vi_planes; VGLBuf = malloc(VGLBufSize);