Merge branch 'master' of https://github.com/tildearrow/furnace into osc_debug

* 'master' of https://github.com/tildearrow/furnace:
  document (NON-WORKING) extended op param effects
  FDS: add NSFPlay core
  NES: fix Furnace-style DPCM
  SoundUnit: fix PCM pitch
  SoundUnit: PCM support

# Conflicts:
#	src/gui/debugWindow.cpp
This commit is contained in:
cam900 2022-05-03 10:23:36 +09:00
commit 2412f688de
19 changed files with 519 additions and 35 deletions

View file

@ -179,6 +179,7 @@ void FurnaceGUI::drawDebug() {
ImGui::Text("offSegaPCM: %x",sample->offSegaPCM);
ImGui::Text("offQSound: %x",sample->offQSound);
ImGui::Text("offX1_010: %x",sample->offX1_010);
ImGui::Text("offSU: %x",sample->offSU);
ImGui::Text("samples: %d",sample->samples);
ImGui::TreePop();
@ -366,4 +367,4 @@ void FurnaceGUI::drawDebug() {
}
if (ImGui::IsWindowFocused(ImGuiFocusedFlags_ChildWindows)) curWindow=GUI_WINDOW_DEBUG;
ImGui::End();
}
}