cli: Use -skip_boot_anim for overriding boot animation

This commit is contained in:
ShiralynDev 2025-05-25 16:32:45 +02:00
parent faff091f5f
commit 88d7e16343
1 changed files with 1 additions and 1 deletions

View File

@ -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;