From 6b54359f371edab9f6165757aabcfe823b77ccd4 Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Wed, 30 Mar 2016 16:17:07 +0200 Subject: fbpdf: pageflip --- fbi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'fbi.c') diff --git a/fbi.c b/fbi.c index 75f0afe..d45b52c 100644 --- a/fbi.c +++ b/fbi.c @@ -1478,14 +1478,14 @@ int main(int argc, char *argv[]) if (device) { /* device specified */ if (strncmp(device, "/dev/d", 6) == 0) { - gfx = drm_init(device, output); + gfx = drm_init(device, output, false); } else { framebuffer = true; gfx = fb_init(device, mode, GET_VT()); } } else { /* try drm first, failing that fb */ - gfx = drm_init(NULL, output); + gfx = drm_init(NULL, output, false); if (!gfx) { framebuffer = true; gfx = fb_init(NULL, mode, GET_VT()); -- cgit