Skip to content

Commit

Permalink
fix: correct typo in max_outputs conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
flexiondotorg committed Jun 25, 2024
1 parent 7afab97 commit 4b30ea2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quickemu
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 4b30ea2

Please sign in to comment.