mirror of https://github.com/xemu-project/xemu.git
cli: Use -skip_boot_anim for overriding boot animation
This commit is contained in:
parent
faff091f5f
commit
88d7e16343
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue