From f4f9ad3420d089d99527018f62dca02e637d7af4 Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Tue, 27 Jul 2010 18:48:19 +0200 Subject: Fix -g/-m console vga driver options * console-client/vga.c (parse_opt): Reverse -g and -m option effect to match documentation. --- console-client/vga.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'console-client/vga.c') diff --git a/console-client/vga.c b/console-client/vga.c index 3cc2135a..4693c664 100644 --- a/console-client/vga.c +++ b/console-client/vga.c @@ -244,11 +244,11 @@ parse_opt (int key, char *arg, struct argp_state *state) break; case 'm': - vga_display_max_glyphs = 1; + vga_display_max_glyphs = 0; break; case 'g': - vga_display_max_glyphs = 0; + vga_display_max_glyphs = 1; break; case ARGP_KEY_END: -- cgit v1.2.3