zynaddsubfx

ZynAddSubFX open source synthesizer
Log | Files | Refs | Submodules | LICENSE

commit 9d1fd07a0c8e74071a9ae3bdd022dd82ed6e6727
parent b1de1c73036fca146ac215605d6549230077ffa2
Author: paulnasca <paulnasca>
Date:   Thu, 14 Sep 2006 18:16:00 +0000

*** empty log message ***

Diffstat:
MChangeLog | 1+
Msrc/UI/ConfigUI.fl | 11++++++++---
2 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/ChangeLog b/ChangeLog @@ -803,5 +803,6 @@ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 16 Apr 2006 - Corectata o eroare care facea ca sa nu se foloseasca insertion effect la master +20 Aug 2006 - Adaugat 88200 ca rata de esantionare diff --git a/src/UI/ConfigUI.fl b/src/UI/ConfigUI.fl @@ -53,7 +53,7 @@ o->hide();} callback {if ((int)o->value()==0) samplerateinput->activate(); else samplerateinput->deactivate(); -int samplerates[7]={44100,16000,22050,32000,44100,48000,96000}; +int samplerates[8]={44100,16000,22050,32000,44100,48000,88200,96000}; config.cfg.SampleRate=samplerates[(int)o->value()]; setsamplerateinput();} @@ -85,9 +85,13 @@ setsamplerateinput();} xywh {50 50 100 20} labelfont 1 } menuitem {} { - label 96000Hz + label 88200Hz xywh {60 60 100 20} labelfont 1 } + menuitem {} { + label 96000Hz + xywh {70 70 100 20} labelfont 1 + } } Fl_Input samplerateinput { callback {char *tmp; @@ -419,7 +423,8 @@ switch(smpr){ case 32000:order=3;break; case 44100:order=4;break; case 48000:order=5;break; - case 96000:order=6;break; + case 88200:order=6;break; + case 96000:order=7;break; default:order=0;break; }; return(order);} {}