Merge branch 'master' into es5506_alt
This commit is contained in:
commit
b42d5b7c1b
11 changed files with 266 additions and 201 deletions
|
|
@ -846,10 +846,16 @@ void putDispatchChan(void* data, int chanNum, int type) {
|
|||
ImGui::Text("- note: %d",ch->note);
|
||||
ImGui::Text("- ins: %d",ch->ins);
|
||||
ImGui::Text("* psgMode:");
|
||||
ImGui::Text(" - tone: %d",ch->psgMode.tone);
|
||||
ImGui::Text(" - noise: %d",ch->psgMode.noise);
|
||||
ImGui::Text(" - envelope: %d",ch->psgMode.envelope);
|
||||
ImGui::Text(" - dac: %d",ch->psgMode.dac);
|
||||
ImGui::Text(" * curr:");
|
||||
ImGui::Text(" - tone: %d",ch->currPSGMode.tone);
|
||||
ImGui::Text(" - noise: %d",ch->currPSGMode.noise);
|
||||
ImGui::Text(" - envelope: %d",ch->currPSGMode.envelope);
|
||||
ImGui::Text(" - dac: %d",ch->currPSGMode.dac);
|
||||
ImGui::Text(" * next:");
|
||||
ImGui::Text(" - tone: %d",ch->nextPSGMode.tone);
|
||||
ImGui::Text(" - noise: %d",ch->nextPSGMode.noise);
|
||||
ImGui::Text(" - envelope: %d",ch->nextPSGMode.envelope);
|
||||
ImGui::Text(" - dac: %d",ch->nextPSGMode.dac);
|
||||
ImGui::Text("* DAC:");
|
||||
ImGui::Text(" - sample: %d",ch->dac.sample);
|
||||
ImGui::Text(" - rate: %d",ch->dac.rate);
|
||||
|
|
@ -886,10 +892,16 @@ void putDispatchChan(void* data, int chanNum, int type) {
|
|||
ImGui::Text(" * slide: %d",ch->envelope.slide);
|
||||
ImGui::Text(" - low: %d",ch->envelope.slideLow);
|
||||
ImGui::Text("* psgMode:");
|
||||
ImGui::Text(" - tone: %d",ch->psgMode.tone);
|
||||
ImGui::Text(" - noise: %d",ch->psgMode.noise);
|
||||
ImGui::Text(" - envelope: %d",ch->psgMode.envelope);
|
||||
ImGui::Text(" - dac: %d",ch->psgMode.dac);
|
||||
ImGui::Text(" * curr:");
|
||||
ImGui::Text(" - tone: %d",ch->currPSGMode.tone);
|
||||
ImGui::Text(" - noise: %d",ch->currPSGMode.noise);
|
||||
ImGui::Text(" - envelope: %d",ch->currPSGMode.envelope);
|
||||
ImGui::Text(" - dac: %d",ch->currPSGMode.dac);
|
||||
ImGui::Text(" * next:");
|
||||
ImGui::Text(" - tone: %d",ch->nextPSGMode.tone);
|
||||
ImGui::Text(" - noise: %d",ch->nextPSGMode.noise);
|
||||
ImGui::Text(" - envelope: %d",ch->nextPSGMode.envelope);
|
||||
ImGui::Text(" - dac: %d",ch->nextPSGMode.dac);
|
||||
ImGui::Text("* DAC:");
|
||||
ImGui::Text(" - sample: %d",ch->dac.sample);
|
||||
ImGui::Text(" - rate: %d",ch->dac.rate);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue