Match previous filter coefficient value to current value in debug menu

Progress state:
Filter slide up/down, both for K1, K2
This commit is contained in:
cam900 2022-05-03 12:39:17 +09:00
parent ec5069ad21
commit a601d0eea5
1 changed files with 2 additions and 2 deletions

View File

@ -369,8 +369,8 @@ void putDispatchChan(void* data, int chanNum, int type) {
ImGui::Text(" - K2Offs: %d",ch->k2Offs);
ImGui::Text(" - K1Slide: %d",ch->k1Slide);
ImGui::Text(" - K2Slide: %d",ch->k2Slide);
ImGui::Text(" - K1Prev: %d",ch->k1Prev);
ImGui::Text(" - K2Prev: %d",ch->k2Prev);
ImGui::Text(" - K1Prev: %.4x",ch->k1Prev);
ImGui::Text(" - K2Prev: %.4x",ch->k2Prev);
ImGui::Text("- vol: %.2x",ch->vol);
ImGui::Text("- LVol: %.2x",ch->lVol);
ImGui::Text("- RVol: %.2x",ch->rVol);