GUI: prepare for oscilloscope improvements
This commit is contained in:
parent
320250b831
commit
7bf2a3ea1a
6 changed files with 65 additions and 17 deletions
|
|
@ -2600,6 +2600,9 @@ bool FurnaceGUI::loop() {
|
|||
drawInsList();
|
||||
drawInsEdit();
|
||||
drawMixer();
|
||||
|
||||
readOsc();
|
||||
|
||||
drawOsc();
|
||||
drawVolMeter();
|
||||
drawSettings();
|
||||
|
|
@ -3428,7 +3431,8 @@ FurnaceGUI::FurnaceGUI():
|
|||
openSampleResampleOpt(false),
|
||||
openSampleAmplifyOpt(false),
|
||||
openSampleSilenceOpt(false),
|
||||
openSampleFilterOpt(false) {
|
||||
openSampleFilterOpt(false),
|
||||
oscTotal(0) {
|
||||
// value keys
|
||||
valueKeys[SDLK_0]=0;
|
||||
valueKeys[SDLK_1]=1;
|
||||
|
|
@ -3469,4 +3473,5 @@ FurnaceGUI::FurnaceGUI():
|
|||
memset(patChanX,0,sizeof(float)*(DIV_MAX_CHANS+1));
|
||||
memset(patChanSlideY,0,sizeof(float)*(DIV_MAX_CHANS+1));
|
||||
memset(lastIns,-1,sizeof(int)*DIV_MAX_CHANS);
|
||||
memset(oscValues,0,sizeof(float)*512);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue