From 620c38f6f45a8708d9dd82f638beb06789b6c7d1 Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Thu, 31 Jan 2019 10:49:31 +0100 Subject: drop -vt option --- fbpdf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'fbpdf.c') diff --git a/fbpdf.c b/fbpdf.c index 91ccecd..4f6562e 100644 --- a/fbpdf.c +++ b/fbpdf.c @@ -303,14 +303,14 @@ int main(int argc, char *argv[]) gfx = drm_init(device, output, mode, pageflip); } else { framebuffer = true; - gfx = fb_init(device, mode, GET_VT()); + gfx = fb_init(device, mode); } } else { /* try drm first, failing that fb */ gfx = drm_init(NULL, output, mode, pageflip); if (!gfx) { framebuffer = true; - gfx = fb_init(NULL, mode, GET_VT()); + gfx = fb_init(NULL, mode); } } if (!gfx) { -- cgit