aboutsummaryrefslogtreecommitdiffstats
path: root/fbi.c
diff options
context:
space:
mode:
Diffstat (limited to 'fbi.c')
-rw-r--r--fbi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fbi.c b/fbi.c
index 9dab5b6..02b8c61 100644
--- a/fbi.c
+++ b/fbi.c
@@ -1420,14 +1420,14 @@ int main(int argc, char *argv[])
gfx = drm_init(device, output, mode, false);
} 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, false);
if (!gfx) {
framebuffer = true;
- gfx = fb_init(NULL, mode, GET_VT());
+ gfx = fb_init(NULL, mode);
}
}
if (!gfx) {