From 88d7e1634356d89c176ef29b9a0e62d017f759bb Mon Sep 17 00:00:00 2001 From: ShiralynDev Date: Sun, 25 May 2025 16:32:45 +0200 Subject: [PATCH] cli: Use -skip_boot_anim for overriding boot animation --- system/vl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/vl.c b/system/vl.c index 0341905b2f..5f32127942 100644 --- a/system/vl.c +++ b/system/vl.c @@ -2905,7 +2905,7 @@ void qemu_init(int argc, char **argv) // Allow overriding the skip startup animation setting from command line bool short_animation = g_config.general.skip_boot_anim; for (int i = 1; i < argc; i++) { - if (argv[i] && strcmp(argv[i], "-short-animation") == 0) { + if (argv[i] && strcmp(argv[i], "-skip_boot_anim") == 0) { argv[i] = NULL; short_animation = true; break;