From c0d674b56e8834d4eb6504534d5fe453aa568d58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Poussineau?= Date: Sun, 22 Nov 2009 13:36:11 +0100 Subject: [PATCH] [WIN32] Enable -k option on Windows too MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There is no reason to have it disabled on this platform. Signed-off-by: Hervé Poussineau Signed-off-by: Aurelien Jarno --- vl.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/vl.c b/vl.c index c3f3c8f195..ee43808ef0 100644 --- a/vl.c +++ b/vl.c @@ -5042,11 +5042,9 @@ int main(int argc, char **argv, char **envp) case QEMU_OPTION_S: autostart = 0; break; -#ifndef _WIN32 case QEMU_OPTION_k: keyboard_layout = optarg; break; -#endif case QEMU_OPTION_localtime: rtc_utc = 0; break;