Thomas Charbonnel <thomas@undata.org>:

updated to version 1.2.
This commit is contained in:
Takashi Iwai 2003-11-03 19:09:32 +00:00
parent a66f2e98b6
commit 6498fd396f
39 changed files with 1155 additions and 158 deletions

View file

@ -21,7 +21,7 @@
#pragma implementation
#include "HC_SystemClock.h"
extern char *freqs[7];
extern char *freqs[10];
HC_SystemClock::HC_SystemClock(int x, int y, int w, int h):Fl_Widget(x, y, w, h, "System Clock")
{
@ -77,6 +77,15 @@ void HC_SystemClock::setFreq(int f)
case 96000:
freq = 5;
break;
case 128000:
freq = 7;
break;
case 176400:
freq = 8;
break;
case 192000:
freq = 9;
break;
default:
freq = 6;
}