diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-11-13 10:38:38 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-11-13 10:38:38 +0000 |
| commit | 43800d83434697a31bdfae62dd377cfc3900986b (patch) | |
| tree | 47c8680ad03e0c1788d9ebe1500c5dc84f318f1a /src/wx/audio_plot.cc | |
| parent | e6d117eefb4e1ed4535bcdbb91d6f2ff91e63de4 (diff) | |
Fix audio plot after MAX_DCP_AUDIO_CHANNELS increase.
Diffstat (limited to 'src/wx/audio_plot.cc')
| -rw-r--r-- | src/wx/audio_plot.cc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/wx/audio_plot.cc b/src/wx/audio_plot.cc index a622e2b86..8dab84be8 100644 --- a/src/wx/audio_plot.cc +++ b/src/wx/audio_plot.cc @@ -67,9 +67,14 @@ AudioPlot::AudioPlot (wxWindow* parent) _colours.push_back (wxColour (255, 0, 139)); _colours.push_back (wxColour (139, 0, 255)); + _colours.push_back (wxColour (139, 139, 255)); + _colours.push_back (wxColour ( 0, 139, 255)); + _colours.push_back (wxColour (255, 139, 139)); + _colours.push_back (wxColour (255, 139, 0)); + set_analysis (shared_ptr<AudioAnalysis> ()); -#if MAX_DCP_AUDIO_CHANNELS != 12 +#if MAX_DCP_AUDIO_CHANNELS != 16 #warning AudioPlot::AudioPlot is expecting the wrong MAX_DCP_AUDIO_CHANNELS #endif |
