summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-11-11 14:01:35 +0000
committerCarl Hetherington <cth@carlh.net>2012-11-11 14:01:35 +0000
commit250daa31097e975e57aa8a4ff19df484812988ce (patch)
tree02706188aab8fead14c6241ae4288871deddad90
parent341e6cb241c95e052742628b5e7967662a552a51 (diff)
Use full names for audio channels.
-rw-r--r--src/wx/film_editor.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/wx/film_editor.cc b/src/wx/film_editor.cc
index 2876edc6a..59210cc0b 100644
--- a/src/wx/film_editor.cc
+++ b/src/wx/film_editor.cc
@@ -308,12 +308,12 @@ FilmEditor::make_audio_panel ()
assert (MAX_AUDIO_CHANNELS == 6);
char const * channels[] = {
- "L",
- "R",
- "C",
- "Lfe",
- "Ls",
- "Rs"
+ "Left",
+ "Right",
+ "Centre",
+ "Lfe (sub)",
+ "Left surround",
+ "Right surround"
};
for (int i = 0; i < MAX_AUDIO_CHANNELS; ++i) {