summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--altosui/AltosConfigPyroUI.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/altosui/AltosConfigPyroUI.java b/altosui/AltosConfigPyroUI.java
index 47b2b662..b14c39ab 100644
--- a/altosui/AltosConfigPyroUI.java
+++ b/altosui/AltosConfigPyroUI.java
@@ -232,7 +232,7 @@ public class AltosConfigPyroUI
c.fill = GridBagConstraints.NONE;
c.anchor = GridBagConstraints.CENTER;
c.insets = il;
- label = new JLabel(String.format("Pyro Channel %d", channel));
+ label = new JLabel(String.format("Pyro Channel %c", 'A' + channel));
pane.add(label, c);
y++;