fix bug when seeking with VT num>den
This commit is contained in:
parent
92d5525692
commit
85f739497f
3 changed files with 46 additions and 1 deletions
|
|
@ -98,7 +98,7 @@ void FurnaceGUI::drawDebug() {
|
|||
ImGui::Columns();
|
||||
ImGui::TreePop();
|
||||
}
|
||||
if (ImGui::TreeNode("Playback Status")) {
|
||||
if (ImGui::TreeNode("Channel Status")) {
|
||||
ImGui::Text("for best results set latency to minimum or use the Frame Advance button.");
|
||||
ImGui::Columns(e->getTotalChannelCount());
|
||||
for (int i=0; i<e->getTotalChannelCount(); i++) {
|
||||
|
|
@ -160,6 +160,11 @@ void FurnaceGUI::drawDebug() {
|
|||
ImGui::Columns();
|
||||
ImGui::TreePop();
|
||||
}
|
||||
if (ImGui::TreeNode("Playback Status")) {
|
||||
String pdi=e->getPlaybackDebugInfo();
|
||||
ImGui::TextWrapped("%s",pdi.c_str());
|
||||
ImGui::TreePop();
|
||||
}
|
||||
if (ImGui::TreeNode("Sample Debug")) {
|
||||
for (int i=0; i<e->song.sampleLen; i++) {
|
||||
DivSample* sample=e->getSample(i);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue