diff --git a/pmb/qemu/run.py b/pmb/qemu/run.py index 9cc3aa63..959a6c95 100644 --- a/pmb/qemu/run.py +++ b/pmb/qemu/run.py @@ -193,8 +193,9 @@ def command_qemu(args, arch, img_path, img_path_2nd=None): if display != "none": display += ",gl=" + ("on" if args.qemu_gl else "off") - command += ["-display", display] - command += ["-show-cursor"] + # Separate -show-cursor option is deprecated. If your host qemu fails here, + # it's old (#1995). + command += ["-display", f"{display},show-cursor=on"] # Audio support if args.qemu_audio: