fix: correct typo in max_outputs conditional
This commit is contained in:
parent
7afab97c63
commit
4b30ea21f4
2
quickemu
2
quickemu
|
@ -940,7 +940,7 @@ function configure_display() {
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# Configure multiscreen if max_outputs was provided in the .conf file
|
# 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}"
|
VIDEO="${VIDEO},max_outputs=${max_outputs}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue