From 79a8f474f7dcc1d3b984d21cf2d1e99a9933fd58 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Tue, 14 May 2024 19:02:34 +0100 Subject: [PATCH] fix(darwin): don't configure braille on darwin; it requires SDL --- quickemu | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/quickemu b/quickemu index a601ba8..35d68d1 100755 --- a/quickemu +++ b/quickemu @@ -1168,7 +1168,8 @@ function vm_boot() { args+=(-k "${keyboard_layout}") fi - if [ -n "${BRAILLE}" ]; then + # Braille requires SDL, so disable for macOS + if [ -n "${BRAILLE}" ] && [ ${DARWIN} -eq 0 ]; then if ${QEMU} -chardev help | grep -q braille; then # shellcheck disable=SC2054 #args+=(-chardev braille,id=brltty