From 4b30ea21f45e24fa28f789bec4202fd3e572f26d Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Tue, 25 Jun 2024 10:54:05 +0100 Subject: [PATCH] fix: correct typo in max_outputs conditional --- quickemu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickemu b/quickemu index 9a0f4cc..686bd03 100755 --- a/quickemu +++ b/quickemu @@ -940,7 +940,7 @@ function configure_display() { esac # Configure multiscreen if max_outputs was provided in the .conf file - if [ -v max_outputs ]; then + if [ -n "${max_outputs}" ]; then VIDEO="${VIDEO},max_outputs=${max_outputs}" fi