Make uninitialised sound-card output obvious

This commit is contained in:
Matthew Stratford 2021-09-02 21:28:50 +01:00
parent 9ce43d542c
commit 3ac694e21c

View file

@ -9,7 +9,16 @@
<h4 class="h5">Currently Selected</h4>
<p>
{% for channel in data.channels %}
<strong>Player {{channel.channel}}:</strong> {% if channel.output %}{{channel.output}}{% else %}Default Audio Device{% endif %}<br>
<strong>Player {{channel.channel}}:</strong>
{% if channel.output %}
{{channel.output}}
{% else %}
Default Audio Device
{% endif %}
{% if not channel.initialised %}
<code> - <strong>ERROR:</strong> Player did not start, potentially missing sound output?</code>
{% endif %}
<br>
{% endfor %}
<br/>
<code>